├── .bazelrc ├── .bazelversion ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── BUILD ├── COPYING ├── COPYING.LESSER ├── KRPC.sln ├── LICENSE ├── README.md ├── Release-Guide.md ├── WINDOWS_BUILDING.md ├── WORKSPACE ├── client ├── cnano │ ├── BUILD │ ├── CHANGES.txt │ ├── CMakeLists.txt.tmpl │ ├── INSTALL.txt │ ├── LICENSE │ ├── Makefile.am │ ├── README.txt │ ├── cog.sh │ ├── configure.ac.tmpl │ ├── include │ │ ├── Makefile.am │ │ ├── krpc_cnano.h │ │ └── krpc_cnano │ │ │ ├── communication.h │ │ │ ├── decoder.h │ │ │ ├── encoder.h │ │ │ ├── error.h │ │ │ ├── memory.h │ │ │ ├── services │ │ │ └── CPPLINT.cfg │ │ │ ├── types.h │ │ │ └── utils.h │ ├── iwyu.sh │ ├── src │ │ ├── Makefile.am │ │ ├── communication.c │ │ ├── decoder.c │ │ ├── encoder.c │ │ ├── error.c │ │ ├── krpc.c │ │ ├── krpc.options │ │ ├── memory.c │ │ └── utils.c │ ├── test-build.sh │ └── test │ │ ├── server_test.hpp │ │ ├── services │ │ └── CPPLINT.cfg │ │ ├── test_client.cpp │ │ ├── test_decoder.cpp │ │ ├── test_encode_decode.cpp │ │ ├── test_encoder.cpp │ │ ├── test_utils.cpp │ │ └── testing_tools.hpp ├── cpp │ ├── BUILD │ ├── CHANGES.txt │ ├── CMakeLists.txt.tmpl │ ├── INSTALL.txt │ ├── LICENSE │ ├── Makefile.am │ ├── configure.ac.tmpl │ ├── include │ │ ├── Makefile.am │ │ ├── krpc.hpp │ │ └── krpc │ │ │ ├── client.hpp │ │ │ ├── connection.hpp │ │ │ ├── decoder.hpp │ │ │ ├── encoder.hpp │ │ │ ├── error.hpp │ │ │ ├── event.hpp │ │ │ ├── object.hpp │ │ │ ├── platform.hpp │ │ │ ├── service.hpp │ │ │ ├── services │ │ │ └── CPPLINT.cfg │ │ │ ├── stream.hpp │ │ │ ├── stream_impl.hpp │ │ │ └── stream_manager.hpp │ ├── iwyu.sh │ ├── protobuf-include.cmake │ ├── src │ │ ├── Makefile.am │ │ ├── client.cpp │ │ ├── connection.cpp │ │ ├── decoder.cpp │ │ ├── encoder.cpp │ │ ├── event.cpp │ │ ├── krpc.cpp │ │ ├── platform.cpp │ │ ├── stream_impl.cpp │ │ └── stream_manager.cpp │ ├── test-build.sh │ └── test │ │ ├── server_test.hpp │ │ ├── services │ │ └── CPPLINT.cfg │ │ ├── test_client.cpp │ │ ├── test_decoder.cpp │ │ ├── test_encode_decode.cpp │ │ ├── test_encoder.cpp │ │ ├── test_event.cpp │ │ ├── test_object.cpp │ │ ├── test_services.cpp │ │ └── test_stream.cpp ├── csharp │ ├── BUILD │ ├── CHANGES.txt │ ├── LICENSE │ ├── src │ │ ├── Attributes │ │ │ └── RPCAttribute.cs │ │ ├── Compatibility │ │ │ ├── ISet.cs │ │ │ └── Tuple.cs │ │ ├── Connection.cs │ │ ├── ConnectionException.cs │ │ ├── Encoder.cs │ │ ├── Event.cs │ │ ├── ExpressionUtils.cs │ │ ├── IConnection.cs │ │ ├── KRPC.Client.csproj │ │ ├── RPCException.cs │ │ ├── RemoteObject.cs │ │ ├── Stream.cs │ │ ├── StreamImpl.cs │ │ ├── StreamManager.cs │ │ └── ignores.txt │ └── test │ │ ├── ConnectionTest.cs │ │ ├── EncoderTest.cs │ │ ├── EventTest.cs │ │ ├── KRPC.Client.Test.csproj │ │ ├── ObjectTest.cs │ │ ├── PerformanceTest.cs │ │ ├── ServerTestCase.cs │ │ ├── StreamTest.cs │ │ ├── TestingTools.cs │ │ └── ignores.txt ├── java │ ├── BUILD │ ├── CHANGES.txt │ ├── LICENSE │ ├── src │ │ └── krpc │ │ │ └── client │ │ │ ├── Connection.java │ │ │ ├── ConnectionException.java │ │ │ ├── Encoder.java │ │ │ ├── EncodingException.java │ │ │ ├── Event.java │ │ │ ├── RPCException.java │ │ │ ├── RPCInfo.java │ │ │ ├── RemoteEnum.java │ │ │ ├── RemoteObject.java │ │ │ ├── Stream.java │ │ │ ├── StreamException.java │ │ │ ├── StreamImpl.java │ │ │ ├── StreamManager.java │ │ │ └── Types.java │ └── test │ │ └── krpc │ │ └── client │ │ ├── ConnectionTest.java │ │ ├── EncoderBooleanValueTest.java │ │ ├── EncoderBytesValueTest.java │ │ ├── EncoderDictionaryCollectionTest.java │ │ ├── EncoderDoubleValueTest.java │ │ ├── EncoderListCollectionTest.java │ │ ├── EncoderSInt32ValueTest.java │ │ ├── EncoderSInt64ValueTest.java │ │ ├── EncoderSetCollectionTest.java │ │ ├── EncoderSingleValueTest.java │ │ ├── EncoderStringValueTest.java │ │ ├── EncoderTest.java │ │ ├── EncoderTestSuite.java │ │ ├── EncoderUInt32ValueTest.java │ │ ├── EncoderUInt64ValueTest.java │ │ ├── EventTest.java │ │ ├── PerformanceTest.java │ │ ├── RemoteObjectTest.java │ │ ├── StreamTest.java │ │ ├── TestSuite.java │ │ └── TestUtils.java ├── lua │ ├── BUILD │ ├── CHANGES.txt │ ├── LICENSE │ ├── krpc │ │ ├── attributes.lua │ │ ├── client.lua │ │ ├── connection.lua │ │ ├── decoder.lua │ │ ├── encoder.lua │ │ ├── init.lua │ │ ├── platform.lua │ │ ├── service.lua │ │ ├── test │ │ │ ├── init.lua │ │ │ ├── servertest.lua │ │ │ ├── test_attributes.lua │ │ │ ├── test_client.lua │ │ │ ├── test_decoder.lua │ │ │ ├── test_encodedecode.lua │ │ │ ├── test_encoder.lua │ │ │ ├── test_objects.lua │ │ │ ├── test_performance.lua │ │ │ ├── test_platform.lua │ │ │ ├── test_snake_case.lua │ │ │ └── test_types.lua │ │ └── types.lua │ └── rockspec.tmpl ├── python │ ├── BUILD │ ├── CHANGES.txt │ ├── LICENSE │ ├── MANIFEST.in │ ├── krpc │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── connection.cpython-37.pyc │ │ │ └── encoder.cpython-37.pyc │ │ ├── attributes.py │ │ ├── client.py │ │ ├── connection.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── error.py │ │ ├── event.py │ │ ├── platform.py │ │ ├── py.typed │ │ ├── schema │ │ │ └── __init__.py │ │ ├── service.py │ │ ├── stream.py │ │ ├── streammanager.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── schema │ │ │ │ └── __init__.py │ │ │ ├── servertestcase.py │ │ │ ├── test_attributes.py │ │ │ ├── test_client.py │ │ │ ├── test_connection.py │ │ │ ├── test_decoder.py │ │ │ ├── test_documentation.py │ │ │ ├── test_encodedecode.py │ │ │ ├── test_encoder.py │ │ │ ├── test_event.py │ │ │ ├── test_objects.py │ │ │ ├── test_performance.py │ │ │ ├── test_platform.py │ │ │ ├── test_snake_case.py │ │ │ ├── test_stream.py │ │ │ ├── test_threading.py │ │ │ └── test_types.py │ │ ├── types.py │ │ └── utils.py │ ├── pycodestyle.ini │ ├── pylint.rc │ └── setup.py ├── serialio │ ├── BUILD │ ├── README.txt │ ├── krpcserialio │ │ ├── __init__.py │ │ └── test.py │ ├── pylint.rc │ └── setup.py └── websockets │ ├── BUILD │ ├── README.txt │ ├── krpcwebsockets │ ├── __init__.py │ └── test.py │ ├── pylint.rc │ └── setup.py ├── config.bzl ├── lib ├── BUILD └── KSP_Data-1.12.3.7z ├── media ├── background.png ├── code.png ├── forum-art.svg └── logo.svg ├── protobuf ├── BUILD ├── LICENSE └── krpc.proto ├── server ├── BUILD ├── CHANGES.txt ├── src │ ├── Addon.cs │ ├── Compatibility.cs │ ├── Configuration.cs │ ├── ConfigurationFile.cs │ ├── Continuations │ │ ├── Continuation.cs │ │ ├── IContinuation.cs │ │ ├── ParameterizedContinuation.cs │ │ └── YieldException.cs │ ├── Core.cs │ ├── KRPC.csproj │ ├── Properties │ │ └── AssemblyKSPVersion.cs │ ├── Server │ │ ├── ByteOutputAdapterStream.cs │ │ ├── ClientActivityEventArgs.cs │ │ ├── ClientConnectedEventArgs.cs │ │ ├── ClientConnectionRequest.cs │ │ ├── ClientDisconnectedEventArgs.cs │ │ ├── ClientDisconnectedException.cs │ │ ├── ClientEventArgs.cs │ │ ├── ClientRequestingConnectionEventArgs.cs │ │ ├── HTTP │ │ │ ├── MalformedRequestException.cs │ │ │ ├── Request.cs │ │ │ └── Response.cs │ │ ├── IClient.cs │ │ ├── IServer.cs │ │ ├── IStream.cs │ │ ├── Message │ │ │ ├── MalformedRequestException.cs │ │ │ ├── NoRequestException.cs │ │ │ ├── RPCClient.cs │ │ │ ├── RPCServer.cs │ │ │ ├── RPCStream.cs │ │ │ ├── StreamClient.cs │ │ │ ├── StreamServer.cs │ │ │ └── StreamStream.cs │ │ ├── NullServer.cs │ │ ├── Protocol.cs │ │ ├── ProtocolBuffers │ │ │ ├── Encoder.cs │ │ │ ├── MessageExtensions.cs │ │ │ ├── RPCClient.cs │ │ │ ├── RPCServer.cs │ │ │ ├── RPCStream.cs │ │ │ ├── StreamClient.cs │ │ │ ├── StreamServer.cs │ │ │ ├── StreamStream.cs │ │ │ └── Utils.cs │ │ ├── SerialIO │ │ │ ├── ByteClient.cs │ │ │ ├── ByteServer.cs │ │ │ ├── ByteStream.cs │ │ │ ├── RPCClient.cs │ │ │ ├── RPCServer.cs │ │ │ ├── RPCStream.cs │ │ │ └── StreamServer.cs │ │ ├── Server.cs │ │ ├── ServerEventArgs.cs │ │ ├── ServerException.cs │ │ ├── ServerStartedEventArgs.cs │ │ ├── ServerStoppedEventArgs.cs │ │ ├── TCP │ │ │ ├── NetworkInformation.cs │ │ │ ├── TCPClient.cs │ │ │ ├── TCPServer.cs │ │ │ └── TCPStream.cs │ │ └── WebSockets │ │ │ ├── ConnectionRequest.cs │ │ │ ├── Frame.cs │ │ │ ├── FramingException.cs │ │ │ ├── HandshakeException.cs │ │ │ ├── Header.cs │ │ │ ├── OpCode.cs │ │ │ ├── RPCClient.cs │ │ │ ├── RPCServer.cs │ │ │ ├── RPCStream.cs │ │ │ ├── StreamClient.cs │ │ │ ├── StreamServer.cs │ │ │ └── StreamStream.cs │ ├── Service │ │ ├── Attributes │ │ │ ├── KRPCClassAttribute.cs │ │ │ ├── KRPCDefaultValueAttribute.cs │ │ │ ├── KRPCEnumAttribute.cs │ │ │ ├── KRPCExceptionAttribute.cs │ │ │ ├── KRPCMethodAttribute.cs │ │ │ ├── KRPCProcedureAttribute.cs │ │ │ ├── KRPCPropertyAttribute.cs │ │ │ └── KRPCServiceAttribute.cs │ │ ├── CallContext.cs │ │ ├── ClassMethodHandler.cs │ │ ├── ClassStaticMethodHandler.cs │ │ ├── DocumentationException.cs │ │ ├── DocumentationUtils.cs │ │ ├── Event.cs │ │ ├── EventStream.cs │ │ ├── GameScene.cs │ │ ├── IProcedureHandler.cs │ │ ├── KRPC │ │ │ ├── ArgumentException.cs │ │ │ ├── ArgumentNullException.cs │ │ │ ├── ArgumentOutOfRangeException.cs │ │ │ ├── Expression.cs │ │ │ ├── InvalidOperationException.cs │ │ │ ├── KRPC.cs │ │ │ └── Type.cs │ │ ├── Messages │ │ │ ├── Argument.cs │ │ │ ├── Class.cs │ │ │ ├── Enumeration.cs │ │ │ ├── EnumerationValue.cs │ │ │ ├── Error.cs │ │ │ ├── Event.cs │ │ │ ├── Exception.cs │ │ │ ├── IMessage.cs │ │ │ ├── NoMessage.cs │ │ │ ├── Parameter.cs │ │ │ ├── Procedure.cs │ │ │ ├── ProcedureCall.cs │ │ │ ├── ProcedureResult.cs │ │ │ ├── Request.cs │ │ │ ├── Response.cs │ │ │ ├── Service.cs │ │ │ ├── Services.cs │ │ │ ├── Status.cs │ │ │ ├── Stream.cs │ │ │ ├── StreamResult.cs │ │ │ └── StreamUpdate.cs │ │ ├── ObjectStore.cs │ │ ├── ProcedureCallContinuation.cs │ │ ├── ProcedureCallStream.cs │ │ ├── ProcedureHandler.cs │ │ ├── ProcedureParameter.cs │ │ ├── RPCException.cs │ │ ├── RequestContinuation.cs │ │ ├── Scanner │ │ │ ├── ClassSignature.cs │ │ │ ├── EnumerationSignature.cs │ │ │ ├── EnumerationValueSignature.cs │ │ │ ├── ExceptionSignature.cs │ │ │ ├── ParameterSignature.cs │ │ │ ├── ProcedureSignature.cs │ │ │ ├── Scanner.cs │ │ │ └── ServiceSignature.cs │ │ ├── ServiceException.cs │ │ ├── Services.cs │ │ ├── Stream.cs │ │ ├── StreamContinuation.cs │ │ ├── TypeUtils.cs │ │ └── ValueUtils.cs │ ├── ServicesChecker.cs │ ├── UI │ │ ├── ClientConnectingDialog.cs │ │ ├── ClientDisconnectDialog.cs │ │ ├── EditServer.cs │ │ ├── GUILayoutExtensions.cs │ │ ├── Icons.cs │ │ ├── InfoWindow.cs │ │ ├── MainWindow.cs │ │ ├── MovedEventArgs.cs │ │ ├── OptionDialog.cs │ │ ├── Skin.cs │ │ └── Window.cs │ ├── Utils │ │ ├── APILoader.cs │ │ ├── Compatibility.cs │ │ ├── ConfigurationStorage.cs │ │ ├── ConfigurationStorageNode.cs │ │ ├── DictionaryExtensions.cs │ │ ├── DocumentationExtensions.cs │ │ ├── DynamicBuffer.cs │ │ ├── Equatable.cs │ │ ├── EventHandlerExtensions.cs │ │ ├── ExponentialMovingAverage.cs │ │ ├── GameScenesExtensions.cs │ │ ├── IScheduler.cs │ │ ├── Logger.cs │ │ ├── RectExtensions.cs │ │ ├── RectStorage.cs │ │ ├── Reflection.cs │ │ ├── RoundRobinScheduler.cs │ │ ├── StopwatchExtensions.cs │ │ ├── Text.cs │ │ └── Tuple.cs │ ├── icons │ │ ├── applauncher-offline.svg │ │ ├── applauncher-online.svg │ │ ├── button-close-window.svg │ │ ├── button-collapse.svg │ │ ├── button-disconnect-client.svg │ │ └── button-expand.svg │ └── ignores.txt └── test │ ├── ConfigurationTest.cs │ ├── Continuations │ └── ParameterizedContinuationTest.cs │ ├── KRPC.Test.csproj │ ├── Server │ ├── ClientRequestingConnectionArgsTest.cs │ ├── HTTP │ │ ├── RequestTest.cs │ │ └── ResponseTest.cs │ ├── ProtocolBuffers │ │ ├── EncoderTest.cs │ │ ├── RPCServerTest.cs │ │ ├── RPCStreamTest.cs │ │ ├── SchemaTest.cs │ │ ├── StreamServerTest.cs │ │ ├── StreamStreamTest.cs │ │ └── TestingTools.cs │ ├── SerialIO │ │ ├── ByteClientTest.cs │ │ ├── RPCServerTest.cs │ │ ├── RPCStreamTest.cs │ │ └── TestingTools.cs │ ├── TCP │ │ ├── AssumptionsTest.cs │ │ ├── NetworkInformationTest.cs │ │ ├── TCPClientTest.cs │ │ └── TCPServerTest.cs │ ├── TestClient.cs │ ├── TestStream.cs │ └── WebSockets │ │ ├── FrameTest.cs │ │ ├── HeaderTest.cs │ │ ├── RPCServerTest.cs │ │ ├── RPCStreamTest.cs │ │ ├── StreamServerTest.cs │ │ └── StreamStreamTest.cs │ ├── Service │ ├── ClassMethodHandlerTest.cs │ ├── DocumentationUtilsTest.cs │ ├── GameSceneTest.cs │ ├── ITestService.cs │ ├── KRPC │ │ ├── ExpressionTest.cs │ │ └── KRPCTest.cs │ ├── MessageAssert.cs │ ├── ObjectStoreTest.cs │ ├── ProcedureHandlerTest.cs │ ├── ProcedureParameterTest.cs │ ├── ScannerTest.cs │ ├── ServicesTest.cs │ ├── TestService.cs │ ├── TestService2.cs │ ├── TestService3.cs │ ├── TestTopLevelClass.cs │ ├── TypeUtilsTest.cs │ └── ValueUtilsTest.cs │ ├── TestingTools.cs │ ├── Utils │ ├── DocumentationExtensionsTest.cs │ ├── DynamicBufferTest.cs │ ├── EquatableTest.cs │ ├── ReflectionTest.cs │ ├── RoundRobinSchedulerTest.cs │ └── TupleTest.cs │ └── ignores.txt ├── service ├── BUILD ├── DockingCamera │ ├── BUILD │ └── src │ │ ├── API.cs │ │ ├── Addon.cs │ │ ├── Camera.cs │ │ ├── DockingCamera.cs │ │ └── KRPC.DockingCamera.csproj ├── Drawing │ ├── BUILD │ ├── CHANGES.txt │ ├── src │ │ ├── Addon.cs │ │ ├── Drawable.cs │ │ ├── Drawing.cs │ │ ├── IDrawable.cs │ │ ├── KRPC.Drawing.csproj │ │ ├── Line.cs │ │ ├── Polygon.cs │ │ ├── Text.cs │ │ └── ignores.txt │ └── test │ │ ├── pylint.rc │ │ ├── test_line.py │ │ ├── test_polygon.py │ │ └── test_text.py ├── InfernalRobotics │ ├── BUILD │ ├── CHANGES.txt │ ├── src │ │ ├── Addon.cs │ │ ├── IRWrapper │ │ │ ├── IControlGroup.cs │ │ │ ├── IRAPI.cs │ │ │ ├── IRNext.cs │ │ │ ├── IROrig.cs │ │ │ ├── IRWrapper.cs │ │ │ └── IServo.cs │ │ ├── InfernalRobotics.cs │ │ ├── KRPC.InfernalRobotics.csproj │ │ ├── Servo.cs │ │ ├── ServoGroup.cs │ │ └── ignores.txt │ └── test │ │ ├── InfernalRobotics.craft │ │ ├── pylint.rc │ │ ├── test_infernalrobotics.py │ │ ├── test_servo.py │ │ └── test_servo_group.py ├── KerbalAlarmClock │ ├── BUILD │ ├── CHANGES.txt │ ├── src │ │ ├── Addon.cs │ │ ├── Alarm.cs │ │ ├── AlarmAction.cs │ │ ├── AlarmType.cs │ │ ├── ExtensionMethods │ │ │ ├── AlarmActionExtensions.cs │ │ │ └── AlarmTypeExtensions.cs │ │ ├── KACWrapper.cs │ │ ├── KRPC.KerbalAlarmClock.csproj │ │ ├── KerbalAlarmClock.cs │ │ └── ignores.txt │ └── test │ │ └── test_kerbalalarmclock.py ├── LiDAR │ ├── BUILD │ └── src │ │ ├── API.cs │ │ ├── Addon.cs │ │ ├── KRPC.LiDAR.csproj │ │ ├── Laser.cs │ │ └── LiDAR.cs ├── RemoteTech │ ├── BUILD │ ├── CHANGES.txt │ ├── src │ │ ├── API.cs │ │ ├── Addon.cs │ │ ├── Antenna.cs │ │ ├── Comms.cs │ │ ├── KRPC.RemoteTech.csproj │ │ ├── RemoteTech.cs │ │ ├── Target.cs │ │ └── ignores.txt │ └── test │ │ ├── craft │ │ └── RemoteTech.craft │ │ ├── pylint.rc │ │ ├── test_antenna.py │ │ ├── test_comms.py │ │ └── test_remotetech.py ├── SpaceCenter │ ├── BUILD │ ├── CHANGES.txt │ ├── LICENSE │ ├── src │ │ ├── AutoPilot │ │ │ ├── AttitudeController.cs │ │ │ └── PIDController.cs │ │ ├── ExtensionMethods │ │ │ ├── ActionGroupExtensions.cs │ │ │ ├── AutoPilotModeExtensions.cs │ │ │ ├── CelestialBodyExtensions.cs │ │ │ ├── ColorExtensions.cs │ │ │ ├── ContractStateExtensions.cs │ │ │ ├── FlightCameraModeExtensions.cs │ │ │ ├── FlightGlobalsExtensions.cs │ │ │ ├── GameModeExtensions.cs │ │ │ ├── GeometryExtensions.cs │ │ │ ├── HopTypeExtensions.cs │ │ │ ├── ITorqueProviderExtensions.cs │ │ │ ├── KerbalTypeExtensions.cs │ │ │ ├── MotorStateExtensions.cs │ │ │ ├── ParachuteStateExtensions.cs │ │ │ ├── PartExtensions.cs │ │ │ ├── RadiatorStateExtensions.cs │ │ │ ├── ResourceFlowModeExtensions.cs │ │ │ ├── SolarPanelStateExtensions.cs │ │ │ ├── SpeedDisplayModesExtensions.cs │ │ │ ├── StockAerodynamics.cs │ │ │ ├── TargetableExtensions.cs │ │ │ ├── VesselControlStateExtensions.cs │ │ │ ├── VesselSituationExtensions.cs │ │ │ └── VesselTypeExtensions.cs │ │ ├── ExternalAPI │ │ │ ├── AGX.cs │ │ │ ├── FAR.cs │ │ │ └── RemoteTech.cs │ │ ├── ExternalAPIAddon.cs │ │ ├── KRPC.SpaceCenter.csproj │ │ ├── NameTag │ │ │ ├── Career.cs │ │ │ ├── NameTag.cs │ │ │ ├── Utils.cs │ │ │ └── Window.cs │ │ ├── PartForcesAddon.cs │ │ ├── PartHighlightAddon.cs │ │ ├── PilotAddon.cs │ │ ├── ResourceTransferAddon.cs │ │ ├── Services │ │ │ ├── Alarm.cs │ │ │ ├── AlarmClock.cs │ │ │ ├── AutoPilot.cs │ │ │ ├── Camera.cs │ │ │ ├── CameraMode.cs │ │ │ ├── CelestialBody.cs │ │ │ ├── CommLink.cs │ │ │ ├── CommLinkType.cs │ │ │ ├── CommNode.cs │ │ │ ├── Comms.cs │ │ │ ├── Contract.cs │ │ │ ├── ContractManager.cs │ │ │ ├── ContractParameter.cs │ │ │ ├── ContractState.cs │ │ │ ├── Control.cs │ │ │ ├── ControlMode.cs │ │ │ ├── ControlSource.cs │ │ │ ├── ControlState.cs │ │ │ ├── CrewMember.cs │ │ │ ├── CrewMemberType.cs │ │ │ ├── Flight.cs │ │ │ ├── GameMode.cs │ │ │ ├── LaunchSite.cs │ │ │ ├── MapFilterType.cs │ │ │ ├── Node.cs │ │ │ ├── Orbit.cs │ │ │ ├── Parts │ │ │ │ ├── Antenna.cs │ │ │ │ ├── AntennaState.cs │ │ │ │ ├── AutostrutState.cs │ │ │ │ ├── CargoBay.cs │ │ │ │ ├── CargoBayState.cs │ │ │ │ ├── ControlSurface.cs │ │ │ │ ├── Decoupler.cs │ │ │ │ ├── DockingPort.cs │ │ │ │ ├── DockingPortState.cs │ │ │ │ ├── Engine.cs │ │ │ │ ├── Experiment.cs │ │ │ │ ├── Fairing.cs │ │ │ │ ├── Force.cs │ │ │ │ ├── Intake.cs │ │ │ │ ├── LaunchClamp.cs │ │ │ │ ├── Leg.cs │ │ │ │ ├── LegState.cs │ │ │ │ ├── Light.cs │ │ │ │ ├── Module.cs │ │ │ │ ├── MotorState.cs │ │ │ │ ├── Parachute.cs │ │ │ │ ├── ParachuteState.cs │ │ │ │ ├── Part.cs │ │ │ │ ├── Parts.cs │ │ │ │ ├── Propellant.cs │ │ │ │ ├── RCS.cs │ │ │ │ ├── Radiator.cs │ │ │ │ ├── RadiatorState.cs │ │ │ │ ├── ReactionWheel.cs │ │ │ │ ├── ResourceConverter.cs │ │ │ │ ├── ResourceConverterState.cs │ │ │ │ ├── ResourceDrain.cs │ │ │ │ ├── ResourceHarvester.cs │ │ │ │ ├── ResourceHarvesterState.cs │ │ │ │ ├── RoboticController.cs │ │ │ │ ├── RoboticHinge.cs │ │ │ │ ├── RoboticPiston.cs │ │ │ │ ├── RoboticRotation.cs │ │ │ │ ├── RoboticRotor.cs │ │ │ │ ├── ScienceData.cs │ │ │ │ ├── ScienceSubject.cs │ │ │ │ ├── Sensor.cs │ │ │ │ ├── SolarPanel.cs │ │ │ │ ├── SolarPanelState.cs │ │ │ │ ├── Thruster.cs │ │ │ │ ├── Wheel.cs │ │ │ │ └── WheelState.cs │ │ │ ├── ReferenceFrame.cs │ │ │ ├── ReferenceFrameType.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceFlowMode.cs │ │ │ ├── ResourceTransfer.cs │ │ │ ├── Resources.cs │ │ │ ├── SASMode.cs │ │ │ ├── SpaceCenter.cs │ │ │ ├── SpeedMode.cs │ │ │ ├── Vessel.cs │ │ │ ├── VesselSituation.cs │ │ │ ├── VesselType.cs │ │ │ ├── WarpMode.cs │ │ │ ├── Waypoint.cs │ │ │ └── WaypointManager.cs │ │ ├── ignores.txt │ │ └── module-manager.cfg │ └── test │ │ ├── craft │ │ ├── Basic.craft │ │ ├── MediumRangeProbe.craft │ │ ├── Multi.craft │ │ ├── Parts.craft │ │ ├── PartsAntenna.craft │ │ ├── PartsCargoBay.craft │ │ ├── PartsControlSurface.craft │ │ ├── PartsDecoupleStage.craft │ │ ├── PartsDecoupler.craft │ │ ├── PartsDockingPort.craft │ │ ├── PartsDockingPortInFlight.craft │ │ ├── PartsDockingPortPreAttachedTo.craft │ │ ├── PartsEngine.craft │ │ ├── PartsExperiment.craft │ │ ├── PartsFairing.craft │ │ ├── PartsFuelLines.craft │ │ ├── PartsHarvester.craft │ │ ├── PartsIntake.craft │ │ ├── PartsLegs.craft │ │ ├── PartsParachute.craft │ │ ├── PartsRCS.craft │ │ ├── PartsRadiator.craft │ │ ├── PartsReactionWheel.craft │ │ ├── PartsSolarPanel.craft │ │ ├── PartsWheel.craft │ │ ├── Probe.craft │ │ ├── ResourceTransfer.craft │ │ ├── Resources.craft │ │ ├── Rover.craft │ │ ├── ShortRangeProbe.craft │ │ ├── Staging.craft │ │ └── Vessel.craft │ │ ├── pylint.rc │ │ ├── test_autopilot.py │ │ ├── test_body.py │ │ ├── test_camera.py │ │ ├── test_comms.py │ │ ├── test_contracts.py │ │ ├── test_control.py │ │ ├── test_flight.py │ │ ├── test_node.py │ │ ├── test_orbit.py │ │ ├── test_parts.py │ │ ├── test_parts_antenna.py │ │ ├── test_parts_cargo_bay.py │ │ ├── test_parts_control_surface.py │ │ ├── test_parts_decoupler.py │ │ ├── test_parts_docking_port.py │ │ ├── test_parts_engine.py │ │ ├── test_parts_experiment.py │ │ ├── test_parts_fairing.py │ │ ├── test_parts_fuel_lines.py │ │ ├── test_parts_intake.py │ │ ├── test_parts_launch_clamp.py │ │ ├── test_parts_leg.py │ │ ├── test_parts_light.py │ │ ├── test_parts_module.py │ │ ├── test_parts_parachute.py │ │ ├── test_parts_part.py │ │ ├── test_parts_radiator.py │ │ ├── test_parts_rcs.py │ │ ├── test_parts_reaction_wheel.py │ │ ├── test_parts_resource_converter.py │ │ ├── test_parts_resource_harvester.py │ │ ├── test_parts_sensor.py │ │ ├── test_parts_solar_panel.py │ │ ├── test_parts_wheel.py │ │ ├── test_performance.py │ │ ├── test_referenceframe.py │ │ ├── test_resource_transfer.py │ │ ├── test_resources.py │ │ ├── test_spacecenter.py │ │ ├── test_vessel.py │ │ └── test_waypoints.py ├── UI │ ├── BUILD │ ├── CHANGES.txt │ ├── KRPC.UI.ksp │ ├── prefabs │ │ ├── Button.prefab │ │ ├── InputField.prefab │ │ ├── Panel.prefab │ │ └── Text.prefab │ ├── src │ │ ├── Addon.cs │ │ ├── Button.cs │ │ ├── Canvas.cs │ │ ├── ExtensionMethods │ │ │ └── TextExtensions.cs │ │ ├── FontStyle.cs │ │ ├── InputField.cs │ │ ├── KRPC.UI.csproj │ │ ├── MessagePosition.cs │ │ ├── Object.cs │ │ ├── Panel.cs │ │ ├── RectTransform.cs │ │ ├── Text.cs │ │ ├── TextAlignment.cs │ │ ├── TextAnchor.cs │ │ ├── UI.cs │ │ └── ignores.txt │ └── test │ │ ├── pylint.rc │ │ ├── test_button.py │ │ ├── test_canvas.py │ │ ├── test_input_field.py │ │ ├── test_text.py │ │ └── test_ui.py └── build.bzl └── tools ├── ServiceDefinitions ├── BUILD ├── LICENSE ├── build.bzl └── src │ ├── Program.cs │ ├── ServiceDefinitions.csproj │ └── app.config ├── TestServer ├── BUILD ├── README.txt ├── docker │ ├── Dockerfile │ ├── Makefile │ └── README.md └── src │ ├── Program.cs │ ├── TestServer.csproj │ ├── TestService.cs │ ├── app.config │ └── ignores.txt ├── TestingTools ├── BUILD └── src │ ├── AutoLoadGame.cs │ ├── AutoSwitchVessel.cs │ ├── OrbitTools.cs │ ├── TestingTools.cs │ └── TestingTools.csproj ├── bazel-version.sh ├── build-against-all-versions.sh ├── build ├── BUILD ├── autotools.bzl ├── checkstyle │ ├── BUILD │ ├── default.properties │ └── google_checks.xml ├── client_test.bzl ├── cpp.bzl ├── cpplint │ └── BUILD ├── csharp.bzl ├── csharp_gendarme_rules.xml ├── image.bzl ├── java.bzl ├── ksp │ └── BUILD ├── lua.bzl ├── mono-4.5 │ └── BUILD ├── pkg.bzl ├── protobuf │ ├── BUILD │ ├── LICENSE │ ├── cpp.bzl │ ├── csharp.bzl │ ├── java.bzl │ ├── lua.bzl │ ├── nanopb.bzl │ └── python.bzl ├── pycodestyle │ └── BUILD ├── pylint │ └── BUILD ├── python.bzl └── sphinx.bzl ├── cslibs └── BUILD ├── dist ├── changes.py ├── genfiles.sh ├── github-changes.tmpl ├── krpctools.sh ├── luarocks.sh ├── nuget.sh └── pypi.sh ├── do-serve-docs.py ├── docker ├── .gitignore ├── CHANGES.txt ├── Dockerfile ├── Makefile ├── VERSION.txt ├── bazelrc ├── ec2-script.sh └── entrypoint.sh ├── install.sh ├── krpc-version.sh ├── krpctest ├── BUILD ├── CHANGES.txt ├── LICENSE ├── MANIFEST.in ├── README.txt ├── krpctest │ ├── __init__.py │ ├── geometry.py │ ├── krpctest.sfs │ ├── krpctest_career.sfs │ └── test │ │ ├── __init__.py │ │ ├── test_geometry.py │ │ └── test_testcase.py ├── pylint.rc └── setup.py ├── krpctools ├── BUILD ├── CHANGES.txt ├── LICENSE ├── MANIFEST.in ├── README.txt ├── clientgen.bzl ├── docgen.bzl ├── krpctools │ ├── __init__.py │ ├── clientgen │ │ ├── __init__.py │ │ ├── cnano.py │ │ ├── cnano.tmpl │ │ ├── cpp.py │ │ ├── cpp.tmpl │ │ ├── csharp.py │ │ ├── csharp.tmpl │ │ ├── docparser.py │ │ ├── generator.py │ │ ├── java.py │ │ ├── java.tmpl │ │ ├── python.py │ │ └── python.tmpl │ ├── docgen │ │ ├── __init__.py │ │ ├── cnano.py │ │ ├── cnano.tmpl │ │ ├── cpp.py │ │ ├── cpp.tmpl │ │ ├── csharp.py │ │ ├── csharp.tmpl │ │ ├── docgen.py │ │ ├── domain.py │ │ ├── extensions.py │ │ ├── java.py │ │ ├── java.tmpl │ │ ├── lua.py │ │ ├── lua.tmpl │ │ ├── nodes.py │ │ ├── python.py │ │ ├── python.tmpl │ │ └── utils.py │ ├── lang │ │ ├── __init__.py │ │ ├── cnano.py │ │ ├── cpp.py │ │ ├── csharp.py │ │ ├── java.py │ │ ├── language.py │ │ ├── lua.py │ │ └── python.py │ ├── servicedefs │ │ └── __init__.py │ ├── test │ │ ├── Empty.json │ │ ├── __init__.py │ │ ├── clientgen-Empty-cnano.txt │ │ ├── clientgen-Empty-cpp.txt │ │ ├── clientgen-Empty-csharp.txt │ │ ├── clientgen-Empty-java.txt │ │ ├── clientgen-TestService-cnano.txt │ │ ├── clientgen-TestService-cpp.txt │ │ ├── clientgen-TestService-csharp.txt │ │ ├── clientgen-TestService-java.txt │ │ ├── clientgentest.py │ │ ├── docgen-Empty-cnano.rst │ │ ├── docgen-Empty-cpp.rst │ │ ├── docgen-Empty-csharp.rst │ │ ├── docgen-Empty-java.rst │ │ ├── docgen-Empty-lua.rst │ │ ├── docgen-Empty-python.rst │ │ ├── docgen-TestService-cnano.rst │ │ ├── docgen-TestService-cpp.rst │ │ ├── docgen-TestService-csharp.rst │ │ ├── docgen-TestService-java.rst │ │ ├── docgen-TestService-lua.rst │ │ ├── docgen-TestService-python.rst │ │ ├── docgentest.py │ │ ├── test_clientgen_cnano.py │ │ ├── test_clientgen_cpp.py │ │ ├── test_clientgen_csharp.py │ │ ├── test_clientgen_java.py │ │ ├── test_docgen_cnano.py │ │ ├── test_docgen_cpp.py │ │ ├── test_docgen_csharp.py │ │ ├── test_docgen_java.py │ │ ├── test_docgen_lua.py │ │ └── test_docgen_python.py │ └── utils.py ├── pylint.rc └── setup.py ├── ksp-version.sh ├── pre-commit.sh ├── run-ksp-remote.sh ├── run-ksp.sh ├── serve-docs.sh ├── settings.cfg ├── strip-bom.sh ├── travis-ci ├── before-deploy.sh ├── local.sh ├── script-docker.sh ├── script-windows.sh ├── script.sh └── set-version.py ├── update-arduino-library.sh ├── update-docs.sh ├── update-workspace.py └── wstest.sh /.bazelrc: -------------------------------------------------------------------------------- 1 | test --legacy_bazel_java_test 2 | -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 3.7.0 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Automatically normalize line endings 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/BUILD -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /KRPC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/KRPC.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/README.md -------------------------------------------------------------------------------- /Release-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/Release-Guide.md -------------------------------------------------------------------------------- /WINDOWS_BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/WINDOWS_BUILDING.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/WORKSPACE -------------------------------------------------------------------------------- /client/cnano/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/BUILD -------------------------------------------------------------------------------- /client/cnano/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/CHANGES.txt -------------------------------------------------------------------------------- /client/cnano/CMakeLists.txt.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/CMakeLists.txt.tmpl -------------------------------------------------------------------------------- /client/cnano/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/INSTALL.txt -------------------------------------------------------------------------------- /client/cnano/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/LICENSE -------------------------------------------------------------------------------- /client/cnano/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | SUBDIRS = include src 3 | -------------------------------------------------------------------------------- /client/cnano/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/README.txt -------------------------------------------------------------------------------- /client/cnano/cog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/cog.sh -------------------------------------------------------------------------------- /client/cnano/configure.ac.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/configure.ac.tmpl -------------------------------------------------------------------------------- /client/cnano/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/Makefile.am -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/communication.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/decoder.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/encoder.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/error.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/memory.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/services/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-whitespace/line_length,-build/include_what_you_use 2 | -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/types.h -------------------------------------------------------------------------------- /client/cnano/include/krpc_cnano/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/include/krpc_cnano/utils.h -------------------------------------------------------------------------------- /client/cnano/iwyu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/iwyu.sh -------------------------------------------------------------------------------- /client/cnano/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/Makefile.am -------------------------------------------------------------------------------- /client/cnano/src/communication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/communication.c -------------------------------------------------------------------------------- /client/cnano/src/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/decoder.c -------------------------------------------------------------------------------- /client/cnano/src/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/encoder.c -------------------------------------------------------------------------------- /client/cnano/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/error.c -------------------------------------------------------------------------------- /client/cnano/src/krpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/krpc.c -------------------------------------------------------------------------------- /client/cnano/src/krpc.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/krpc.options -------------------------------------------------------------------------------- /client/cnano/src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/memory.c -------------------------------------------------------------------------------- /client/cnano/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/src/utils.c -------------------------------------------------------------------------------- /client/cnano/test-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test-build.sh -------------------------------------------------------------------------------- /client/cnano/test/server_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/server_test.hpp -------------------------------------------------------------------------------- /client/cnano/test/services/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-whitespace/line_length,-build/include_what_you_use 2 | -------------------------------------------------------------------------------- /client/cnano/test/test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/test_client.cpp -------------------------------------------------------------------------------- /client/cnano/test/test_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/test_decoder.cpp -------------------------------------------------------------------------------- /client/cnano/test/test_encode_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/test_encode_decode.cpp -------------------------------------------------------------------------------- /client/cnano/test/test_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/test_encoder.cpp -------------------------------------------------------------------------------- /client/cnano/test/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/test_utils.cpp -------------------------------------------------------------------------------- /client/cnano/test/testing_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cnano/test/testing_tools.hpp -------------------------------------------------------------------------------- /client/cpp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/BUILD -------------------------------------------------------------------------------- /client/cpp/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/CHANGES.txt -------------------------------------------------------------------------------- /client/cpp/CMakeLists.txt.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/CMakeLists.txt.tmpl -------------------------------------------------------------------------------- /client/cpp/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/INSTALL.txt -------------------------------------------------------------------------------- /client/cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/LICENSE -------------------------------------------------------------------------------- /client/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/Makefile.am -------------------------------------------------------------------------------- /client/cpp/configure.ac.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/configure.ac.tmpl -------------------------------------------------------------------------------- /client/cpp/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/Makefile.am -------------------------------------------------------------------------------- /client/cpp/include/krpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/client.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/connection.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/decoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/decoder.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/encoder.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/error.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/event.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/object.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/platform.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/service.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/services/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-whitespace/line_length,-build/include_what_you_use 2 | -------------------------------------------------------------------------------- /client/cpp/include/krpc/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/stream.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/stream_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/stream_impl.hpp -------------------------------------------------------------------------------- /client/cpp/include/krpc/stream_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/include/krpc/stream_manager.hpp -------------------------------------------------------------------------------- /client/cpp/iwyu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/iwyu.sh -------------------------------------------------------------------------------- /client/cpp/protobuf-include.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/protobuf-include.cmake -------------------------------------------------------------------------------- /client/cpp/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/Makefile.am -------------------------------------------------------------------------------- /client/cpp/src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/client.cpp -------------------------------------------------------------------------------- /client/cpp/src/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/connection.cpp -------------------------------------------------------------------------------- /client/cpp/src/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/decoder.cpp -------------------------------------------------------------------------------- /client/cpp/src/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/encoder.cpp -------------------------------------------------------------------------------- /client/cpp/src/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/event.cpp -------------------------------------------------------------------------------- /client/cpp/src/krpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/krpc.cpp -------------------------------------------------------------------------------- /client/cpp/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/platform.cpp -------------------------------------------------------------------------------- /client/cpp/src/stream_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/stream_impl.cpp -------------------------------------------------------------------------------- /client/cpp/src/stream_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/src/stream_manager.cpp -------------------------------------------------------------------------------- /client/cpp/test-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test-build.sh -------------------------------------------------------------------------------- /client/cpp/test/server_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/server_test.hpp -------------------------------------------------------------------------------- /client/cpp/test/services/CPPLINT.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/services/CPPLINT.cfg -------------------------------------------------------------------------------- /client/cpp/test/test_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_client.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_decoder.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_encode_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_encode_decode.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_encoder.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_event.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_object.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_services.cpp -------------------------------------------------------------------------------- /client/cpp/test/test_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/cpp/test/test_stream.cpp -------------------------------------------------------------------------------- /client/csharp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/BUILD -------------------------------------------------------------------------------- /client/csharp/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/CHANGES.txt -------------------------------------------------------------------------------- /client/csharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/LICENSE -------------------------------------------------------------------------------- /client/csharp/src/Attributes/RPCAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Attributes/RPCAttribute.cs -------------------------------------------------------------------------------- /client/csharp/src/Compatibility/ISet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Compatibility/ISet.cs -------------------------------------------------------------------------------- /client/csharp/src/Compatibility/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Compatibility/Tuple.cs -------------------------------------------------------------------------------- /client/csharp/src/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Connection.cs -------------------------------------------------------------------------------- /client/csharp/src/ConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/ConnectionException.cs -------------------------------------------------------------------------------- /client/csharp/src/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Encoder.cs -------------------------------------------------------------------------------- /client/csharp/src/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Event.cs -------------------------------------------------------------------------------- /client/csharp/src/ExpressionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/ExpressionUtils.cs -------------------------------------------------------------------------------- /client/csharp/src/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/IConnection.cs -------------------------------------------------------------------------------- /client/csharp/src/KRPC.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/KRPC.Client.csproj -------------------------------------------------------------------------------- /client/csharp/src/RPCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/RPCException.cs -------------------------------------------------------------------------------- /client/csharp/src/RemoteObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/RemoteObject.cs -------------------------------------------------------------------------------- /client/csharp/src/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/Stream.cs -------------------------------------------------------------------------------- /client/csharp/src/StreamImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/StreamImpl.cs -------------------------------------------------------------------------------- /client/csharp/src/StreamManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/StreamManager.cs -------------------------------------------------------------------------------- /client/csharp/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/src/ignores.txt -------------------------------------------------------------------------------- /client/csharp/test/ConnectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/ConnectionTest.cs -------------------------------------------------------------------------------- /client/csharp/test/EncoderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/EncoderTest.cs -------------------------------------------------------------------------------- /client/csharp/test/EventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/EventTest.cs -------------------------------------------------------------------------------- /client/csharp/test/KRPC.Client.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/KRPC.Client.Test.csproj -------------------------------------------------------------------------------- /client/csharp/test/ObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/ObjectTest.cs -------------------------------------------------------------------------------- /client/csharp/test/PerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/PerformanceTest.cs -------------------------------------------------------------------------------- /client/csharp/test/ServerTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/ServerTestCase.cs -------------------------------------------------------------------------------- /client/csharp/test/StreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/StreamTest.cs -------------------------------------------------------------------------------- /client/csharp/test/TestingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/TestingTools.cs -------------------------------------------------------------------------------- /client/csharp/test/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/csharp/test/ignores.txt -------------------------------------------------------------------------------- /client/java/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/BUILD -------------------------------------------------------------------------------- /client/java/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/CHANGES.txt -------------------------------------------------------------------------------- /client/java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/LICENSE -------------------------------------------------------------------------------- /client/java/src/krpc/client/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/Connection.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/ConnectionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/ConnectionException.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/Encoder.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/EncodingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/EncodingException.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/Event.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/RPCException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/RPCException.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/RPCInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/RPCInfo.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/RemoteEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/RemoteEnum.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/RemoteObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/RemoteObject.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/Stream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/Stream.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/StreamException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/StreamException.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/StreamImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/StreamImpl.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/StreamManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/StreamManager.java -------------------------------------------------------------------------------- /client/java/src/krpc/client/Types.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/src/krpc/client/Types.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/ConnectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/ConnectionTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/EncoderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/EncoderTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/EncoderTestSuite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/EncoderTestSuite.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/EventTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/EventTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/PerformanceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/PerformanceTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/RemoteObjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/RemoteObjectTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/StreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/StreamTest.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/TestSuite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/TestSuite.java -------------------------------------------------------------------------------- /client/java/test/krpc/client/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/java/test/krpc/client/TestUtils.java -------------------------------------------------------------------------------- /client/lua/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/BUILD -------------------------------------------------------------------------------- /client/lua/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/CHANGES.txt -------------------------------------------------------------------------------- /client/lua/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/LICENSE -------------------------------------------------------------------------------- /client/lua/krpc/attributes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/attributes.lua -------------------------------------------------------------------------------- /client/lua/krpc/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/client.lua -------------------------------------------------------------------------------- /client/lua/krpc/connection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/connection.lua -------------------------------------------------------------------------------- /client/lua/krpc/decoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/decoder.lua -------------------------------------------------------------------------------- /client/lua/krpc/encoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/encoder.lua -------------------------------------------------------------------------------- /client/lua/krpc/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/init.lua -------------------------------------------------------------------------------- /client/lua/krpc/platform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/platform.lua -------------------------------------------------------------------------------- /client/lua/krpc/service.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/service.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/init.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/servertest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/servertest.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_attributes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_attributes.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_client.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_decoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_decoder.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_encodedecode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_encodedecode.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_encoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_encoder.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_objects.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_performance.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_performance.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_platform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_platform.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_snake_case.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_snake_case.lua -------------------------------------------------------------------------------- /client/lua/krpc/test/test_types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/test/test_types.lua -------------------------------------------------------------------------------- /client/lua/krpc/types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/krpc/types.lua -------------------------------------------------------------------------------- /client/lua/rockspec.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/lua/rockspec.tmpl -------------------------------------------------------------------------------- /client/python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/BUILD -------------------------------------------------------------------------------- /client/python/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/CHANGES.txt -------------------------------------------------------------------------------- /client/python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/LICENSE -------------------------------------------------------------------------------- /client/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/MANIFEST.in -------------------------------------------------------------------------------- /client/python/krpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/__init__.py -------------------------------------------------------------------------------- /client/python/krpc/__pycache__/encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/__pycache__/encoder.cpython-37.pyc -------------------------------------------------------------------------------- /client/python/krpc/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/attributes.py -------------------------------------------------------------------------------- /client/python/krpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/client.py -------------------------------------------------------------------------------- /client/python/krpc/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/connection.py -------------------------------------------------------------------------------- /client/python/krpc/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/decoder.py -------------------------------------------------------------------------------- /client/python/krpc/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/encoder.py -------------------------------------------------------------------------------- /client/python/krpc/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/error.py -------------------------------------------------------------------------------- /client/python/krpc/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/event.py -------------------------------------------------------------------------------- /client/python/krpc/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/platform.py -------------------------------------------------------------------------------- /client/python/krpc/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/python/krpc/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/python/krpc/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/service.py -------------------------------------------------------------------------------- /client/python/krpc/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/stream.py -------------------------------------------------------------------------------- /client/python/krpc/streammanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/streammanager.py -------------------------------------------------------------------------------- /client/python/krpc/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/python/krpc/test/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/python/krpc/test/servertestcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/servertestcase.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_attributes.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_client.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_connection.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_decoder.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_documentation.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_encodedecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_encodedecode.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_encoder.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_event.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_objects.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_performance.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_platform.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_snake_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_snake_case.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_stream.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_threading.py -------------------------------------------------------------------------------- /client/python/krpc/test/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/test/test_types.py -------------------------------------------------------------------------------- /client/python/krpc/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/types.py -------------------------------------------------------------------------------- /client/python/krpc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/krpc/utils.py -------------------------------------------------------------------------------- /client/python/pycodestyle.ini: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | exclude = KRPC_pb2.py 3 | -------------------------------------------------------------------------------- /client/python/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/pylint.rc -------------------------------------------------------------------------------- /client/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/python/setup.py -------------------------------------------------------------------------------- /client/serialio/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/serialio/BUILD -------------------------------------------------------------------------------- /client/serialio/README.txt: -------------------------------------------------------------------------------- 1 | Serial IO communication tests for kRPC 2 | -------------------------------------------------------------------------------- /client/serialio/krpcserialio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/serialio/krpcserialio/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/serialio/krpcserialio/test.py -------------------------------------------------------------------------------- /client/serialio/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/serialio/pylint.rc -------------------------------------------------------------------------------- /client/serialio/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/serialio/setup.py -------------------------------------------------------------------------------- /client/websockets/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/websockets/BUILD -------------------------------------------------------------------------------- /client/websockets/README.txt: -------------------------------------------------------------------------------- 1 | WebSockets tests for kRPC 2 | -------------------------------------------------------------------------------- /client/websockets/krpcwebsockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/websockets/krpcwebsockets/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/websockets/krpcwebsockets/test.py -------------------------------------------------------------------------------- /client/websockets/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/websockets/pylint.rc -------------------------------------------------------------------------------- /client/websockets/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/client/websockets/setup.py -------------------------------------------------------------------------------- /config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/config.bzl -------------------------------------------------------------------------------- /lib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/lib/BUILD -------------------------------------------------------------------------------- /lib/KSP_Data-1.12.3.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/lib/KSP_Data-1.12.3.7z -------------------------------------------------------------------------------- /media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/media/background.png -------------------------------------------------------------------------------- /media/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/media/code.png -------------------------------------------------------------------------------- /media/forum-art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/media/forum-art.svg -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/media/logo.svg -------------------------------------------------------------------------------- /protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/protobuf/BUILD -------------------------------------------------------------------------------- /protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/protobuf/LICENSE -------------------------------------------------------------------------------- /protobuf/krpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/protobuf/krpc.proto -------------------------------------------------------------------------------- /server/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/BUILD -------------------------------------------------------------------------------- /server/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/CHANGES.txt -------------------------------------------------------------------------------- /server/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Addon.cs -------------------------------------------------------------------------------- /server/src/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Compatibility.cs -------------------------------------------------------------------------------- /server/src/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Configuration.cs -------------------------------------------------------------------------------- /server/src/ConfigurationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/ConfigurationFile.cs -------------------------------------------------------------------------------- /server/src/Continuations/Continuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Continuations/Continuation.cs -------------------------------------------------------------------------------- /server/src/Continuations/IContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Continuations/IContinuation.cs -------------------------------------------------------------------------------- /server/src/Continuations/ParameterizedContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Continuations/ParameterizedContinuation.cs -------------------------------------------------------------------------------- /server/src/Continuations/YieldException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Continuations/YieldException.cs -------------------------------------------------------------------------------- /server/src/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Core.cs -------------------------------------------------------------------------------- /server/src/KRPC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/KRPC.csproj -------------------------------------------------------------------------------- /server/src/Properties/AssemblyKSPVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Properties/AssemblyKSPVersion.cs -------------------------------------------------------------------------------- /server/src/Server/ByteOutputAdapterStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ByteOutputAdapterStream.cs -------------------------------------------------------------------------------- /server/src/Server/ClientActivityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientActivityEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/ClientConnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientConnectedEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/ClientConnectionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientConnectionRequest.cs -------------------------------------------------------------------------------- /server/src/Server/ClientDisconnectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientDisconnectedEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/ClientDisconnectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientDisconnectedException.cs -------------------------------------------------------------------------------- /server/src/Server/ClientEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ClientEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/HTTP/MalformedRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/HTTP/MalformedRequestException.cs -------------------------------------------------------------------------------- /server/src/Server/HTTP/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/HTTP/Request.cs -------------------------------------------------------------------------------- /server/src/Server/HTTP/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/HTTP/Response.cs -------------------------------------------------------------------------------- /server/src/Server/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/IClient.cs -------------------------------------------------------------------------------- /server/src/Server/IServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/IServer.cs -------------------------------------------------------------------------------- /server/src/Server/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/IStream.cs -------------------------------------------------------------------------------- /server/src/Server/Message/NoRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/NoRequestException.cs -------------------------------------------------------------------------------- /server/src/Server/Message/RPCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/RPCClient.cs -------------------------------------------------------------------------------- /server/src/Server/Message/RPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/RPCServer.cs -------------------------------------------------------------------------------- /server/src/Server/Message/RPCStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/RPCStream.cs -------------------------------------------------------------------------------- /server/src/Server/Message/StreamClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/StreamClient.cs -------------------------------------------------------------------------------- /server/src/Server/Message/StreamServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/StreamServer.cs -------------------------------------------------------------------------------- /server/src/Server/Message/StreamStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Message/StreamStream.cs -------------------------------------------------------------------------------- /server/src/Server/NullServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/NullServer.cs -------------------------------------------------------------------------------- /server/src/Server/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Protocol.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/Encoder.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/RPCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/RPCClient.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/RPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/RPCServer.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/RPCStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/RPCStream.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/StreamClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/StreamClient.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/StreamServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/StreamServer.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/StreamStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/StreamStream.cs -------------------------------------------------------------------------------- /server/src/Server/ProtocolBuffers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ProtocolBuffers/Utils.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/ByteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/ByteClient.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/ByteServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/ByteServer.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/ByteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/ByteStream.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/RPCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/RPCClient.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/RPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/RPCServer.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/RPCStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/RPCStream.cs -------------------------------------------------------------------------------- /server/src/Server/SerialIO/StreamServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/SerialIO/StreamServer.cs -------------------------------------------------------------------------------- /server/src/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/Server.cs -------------------------------------------------------------------------------- /server/src/Server/ServerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ServerEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/ServerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ServerException.cs -------------------------------------------------------------------------------- /server/src/Server/ServerStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ServerStartedEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/ServerStoppedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/ServerStoppedEventArgs.cs -------------------------------------------------------------------------------- /server/src/Server/TCP/NetworkInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/TCP/NetworkInformation.cs -------------------------------------------------------------------------------- /server/src/Server/TCP/TCPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/TCP/TCPClient.cs -------------------------------------------------------------------------------- /server/src/Server/TCP/TCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/TCP/TCPServer.cs -------------------------------------------------------------------------------- /server/src/Server/TCP/TCPStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/TCP/TCPStream.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/ConnectionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/ConnectionRequest.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/Frame.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/FramingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/FramingException.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/HandshakeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/HandshakeException.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/Header.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/OpCode.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/RPCClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/RPCClient.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/RPCServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/RPCServer.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/RPCStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/RPCStream.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/StreamClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/StreamClient.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/StreamServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/StreamServer.cs -------------------------------------------------------------------------------- /server/src/Server/WebSockets/StreamStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Server/WebSockets/StreamStream.cs -------------------------------------------------------------------------------- /server/src/Service/Attributes/KRPCClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Attributes/KRPCClassAttribute.cs -------------------------------------------------------------------------------- /server/src/Service/Attributes/KRPCEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Attributes/KRPCEnumAttribute.cs -------------------------------------------------------------------------------- /server/src/Service/Attributes/KRPCMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Attributes/KRPCMethodAttribute.cs -------------------------------------------------------------------------------- /server/src/Service/Attributes/KRPCServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Attributes/KRPCServiceAttribute.cs -------------------------------------------------------------------------------- /server/src/Service/CallContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/CallContext.cs -------------------------------------------------------------------------------- /server/src/Service/ClassMethodHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ClassMethodHandler.cs -------------------------------------------------------------------------------- /server/src/Service/ClassStaticMethodHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ClassStaticMethodHandler.cs -------------------------------------------------------------------------------- /server/src/Service/DocumentationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/DocumentationException.cs -------------------------------------------------------------------------------- /server/src/Service/DocumentationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/DocumentationUtils.cs -------------------------------------------------------------------------------- /server/src/Service/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Event.cs -------------------------------------------------------------------------------- /server/src/Service/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/EventStream.cs -------------------------------------------------------------------------------- /server/src/Service/GameScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/GameScene.cs -------------------------------------------------------------------------------- /server/src/Service/IProcedureHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/IProcedureHandler.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/ArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/ArgumentException.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/ArgumentNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/ArgumentNullException.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/Expression.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/InvalidOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/InvalidOperationException.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/KRPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/KRPC.cs -------------------------------------------------------------------------------- /server/src/Service/KRPC/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/KRPC/Type.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Argument.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Class.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Enumeration.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/EnumerationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/EnumerationValue.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Error.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Event.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Exception.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/IMessage.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/NoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/NoMessage.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Parameter.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Procedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Procedure.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/ProcedureCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/ProcedureCall.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/ProcedureResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/ProcedureResult.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Request.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Response.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Service.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Services.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Status.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/Stream.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/StreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/StreamResult.cs -------------------------------------------------------------------------------- /server/src/Service/Messages/StreamUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Messages/StreamUpdate.cs -------------------------------------------------------------------------------- /server/src/Service/ObjectStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ObjectStore.cs -------------------------------------------------------------------------------- /server/src/Service/ProcedureCallContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ProcedureCallContinuation.cs -------------------------------------------------------------------------------- /server/src/Service/ProcedureCallStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ProcedureCallStream.cs -------------------------------------------------------------------------------- /server/src/Service/ProcedureHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ProcedureHandler.cs -------------------------------------------------------------------------------- /server/src/Service/ProcedureParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ProcedureParameter.cs -------------------------------------------------------------------------------- /server/src/Service/RPCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/RPCException.cs -------------------------------------------------------------------------------- /server/src/Service/RequestContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/RequestContinuation.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/ClassSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/ClassSignature.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/EnumerationSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/EnumerationSignature.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/ExceptionSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/ExceptionSignature.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/ParameterSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/ParameterSignature.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/ProcedureSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/ProcedureSignature.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/Scanner.cs -------------------------------------------------------------------------------- /server/src/Service/Scanner/ServiceSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Scanner/ServiceSignature.cs -------------------------------------------------------------------------------- /server/src/Service/ServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ServiceException.cs -------------------------------------------------------------------------------- /server/src/Service/Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Services.cs -------------------------------------------------------------------------------- /server/src/Service/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/Stream.cs -------------------------------------------------------------------------------- /server/src/Service/StreamContinuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/StreamContinuation.cs -------------------------------------------------------------------------------- /server/src/Service/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/TypeUtils.cs -------------------------------------------------------------------------------- /server/src/Service/ValueUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Service/ValueUtils.cs -------------------------------------------------------------------------------- /server/src/ServicesChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/ServicesChecker.cs -------------------------------------------------------------------------------- /server/src/UI/ClientConnectingDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/ClientConnectingDialog.cs -------------------------------------------------------------------------------- /server/src/UI/ClientDisconnectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/ClientDisconnectDialog.cs -------------------------------------------------------------------------------- /server/src/UI/EditServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/EditServer.cs -------------------------------------------------------------------------------- /server/src/UI/GUILayoutExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/GUILayoutExtensions.cs -------------------------------------------------------------------------------- /server/src/UI/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/Icons.cs -------------------------------------------------------------------------------- /server/src/UI/InfoWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/InfoWindow.cs -------------------------------------------------------------------------------- /server/src/UI/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/MainWindow.cs -------------------------------------------------------------------------------- /server/src/UI/MovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/MovedEventArgs.cs -------------------------------------------------------------------------------- /server/src/UI/OptionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/OptionDialog.cs -------------------------------------------------------------------------------- /server/src/UI/Skin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/Skin.cs -------------------------------------------------------------------------------- /server/src/UI/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/UI/Window.cs -------------------------------------------------------------------------------- /server/src/Utils/APILoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/APILoader.cs -------------------------------------------------------------------------------- /server/src/Utils/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Compatibility.cs -------------------------------------------------------------------------------- /server/src/Utils/ConfigurationStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/ConfigurationStorage.cs -------------------------------------------------------------------------------- /server/src/Utils/ConfigurationStorageNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/ConfigurationStorageNode.cs -------------------------------------------------------------------------------- /server/src/Utils/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/DictionaryExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/DocumentationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/DocumentationExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/DynamicBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/DynamicBuffer.cs -------------------------------------------------------------------------------- /server/src/Utils/Equatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Equatable.cs -------------------------------------------------------------------------------- /server/src/Utils/EventHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/EventHandlerExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/ExponentialMovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/ExponentialMovingAverage.cs -------------------------------------------------------------------------------- /server/src/Utils/GameScenesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/GameScenesExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/IScheduler.cs -------------------------------------------------------------------------------- /server/src/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Logger.cs -------------------------------------------------------------------------------- /server/src/Utils/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/RectExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/RectStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/RectStorage.cs -------------------------------------------------------------------------------- /server/src/Utils/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Reflection.cs -------------------------------------------------------------------------------- /server/src/Utils/RoundRobinScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/RoundRobinScheduler.cs -------------------------------------------------------------------------------- /server/src/Utils/StopwatchExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/StopwatchExtensions.cs -------------------------------------------------------------------------------- /server/src/Utils/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Text.cs -------------------------------------------------------------------------------- /server/src/Utils/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/Utils/Tuple.cs -------------------------------------------------------------------------------- /server/src/icons/applauncher-offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/applauncher-offline.svg -------------------------------------------------------------------------------- /server/src/icons/applauncher-online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/applauncher-online.svg -------------------------------------------------------------------------------- /server/src/icons/button-close-window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/button-close-window.svg -------------------------------------------------------------------------------- /server/src/icons/button-collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/button-collapse.svg -------------------------------------------------------------------------------- /server/src/icons/button-disconnect-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/button-disconnect-client.svg -------------------------------------------------------------------------------- /server/src/icons/button-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/icons/button-expand.svg -------------------------------------------------------------------------------- /server/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/src/ignores.txt -------------------------------------------------------------------------------- /server/test/ConfigurationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/ConfigurationTest.cs -------------------------------------------------------------------------------- /server/test/KRPC.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/KRPC.Test.csproj -------------------------------------------------------------------------------- /server/test/Server/HTTP/RequestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/HTTP/RequestTest.cs -------------------------------------------------------------------------------- /server/test/Server/HTTP/ResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/HTTP/ResponseTest.cs -------------------------------------------------------------------------------- /server/test/Server/ProtocolBuffers/EncoderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/ProtocolBuffers/EncoderTest.cs -------------------------------------------------------------------------------- /server/test/Server/ProtocolBuffers/RPCServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/ProtocolBuffers/RPCServerTest.cs -------------------------------------------------------------------------------- /server/test/Server/ProtocolBuffers/RPCStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/ProtocolBuffers/RPCStreamTest.cs -------------------------------------------------------------------------------- /server/test/Server/ProtocolBuffers/SchemaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/ProtocolBuffers/SchemaTest.cs -------------------------------------------------------------------------------- /server/test/Server/ProtocolBuffers/TestingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/ProtocolBuffers/TestingTools.cs -------------------------------------------------------------------------------- /server/test/Server/SerialIO/ByteClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/SerialIO/ByteClientTest.cs -------------------------------------------------------------------------------- /server/test/Server/SerialIO/RPCServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/SerialIO/RPCServerTest.cs -------------------------------------------------------------------------------- /server/test/Server/SerialIO/RPCStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/SerialIO/RPCStreamTest.cs -------------------------------------------------------------------------------- /server/test/Server/SerialIO/TestingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/SerialIO/TestingTools.cs -------------------------------------------------------------------------------- /server/test/Server/TCP/AssumptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TCP/AssumptionsTest.cs -------------------------------------------------------------------------------- /server/test/Server/TCP/NetworkInformationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TCP/NetworkInformationTest.cs -------------------------------------------------------------------------------- /server/test/Server/TCP/TCPClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TCP/TCPClientTest.cs -------------------------------------------------------------------------------- /server/test/Server/TCP/TCPServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TCP/TCPServerTest.cs -------------------------------------------------------------------------------- /server/test/Server/TestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TestClient.cs -------------------------------------------------------------------------------- /server/test/Server/TestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/TestStream.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/FrameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/FrameTest.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/HeaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/HeaderTest.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/RPCServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/RPCServerTest.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/RPCStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/RPCStreamTest.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/StreamServerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/StreamServerTest.cs -------------------------------------------------------------------------------- /server/test/Server/WebSockets/StreamStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Server/WebSockets/StreamStreamTest.cs -------------------------------------------------------------------------------- /server/test/Service/ClassMethodHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ClassMethodHandlerTest.cs -------------------------------------------------------------------------------- /server/test/Service/DocumentationUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/DocumentationUtilsTest.cs -------------------------------------------------------------------------------- /server/test/Service/GameSceneTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/GameSceneTest.cs -------------------------------------------------------------------------------- /server/test/Service/ITestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ITestService.cs -------------------------------------------------------------------------------- /server/test/Service/KRPC/ExpressionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/KRPC/ExpressionTest.cs -------------------------------------------------------------------------------- /server/test/Service/KRPC/KRPCTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/KRPC/KRPCTest.cs -------------------------------------------------------------------------------- /server/test/Service/MessageAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/MessageAssert.cs -------------------------------------------------------------------------------- /server/test/Service/ObjectStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ObjectStoreTest.cs -------------------------------------------------------------------------------- /server/test/Service/ProcedureHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ProcedureHandlerTest.cs -------------------------------------------------------------------------------- /server/test/Service/ProcedureParameterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ProcedureParameterTest.cs -------------------------------------------------------------------------------- /server/test/Service/ScannerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ScannerTest.cs -------------------------------------------------------------------------------- /server/test/Service/ServicesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ServicesTest.cs -------------------------------------------------------------------------------- /server/test/Service/TestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/TestService.cs -------------------------------------------------------------------------------- /server/test/Service/TestService2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/TestService2.cs -------------------------------------------------------------------------------- /server/test/Service/TestService3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/TestService3.cs -------------------------------------------------------------------------------- /server/test/Service/TestTopLevelClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/TestTopLevelClass.cs -------------------------------------------------------------------------------- /server/test/Service/TypeUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/TypeUtilsTest.cs -------------------------------------------------------------------------------- /server/test/Service/ValueUtilsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Service/ValueUtilsTest.cs -------------------------------------------------------------------------------- /server/test/TestingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/TestingTools.cs -------------------------------------------------------------------------------- /server/test/Utils/DocumentationExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/DocumentationExtensionsTest.cs -------------------------------------------------------------------------------- /server/test/Utils/DynamicBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/DynamicBufferTest.cs -------------------------------------------------------------------------------- /server/test/Utils/EquatableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/EquatableTest.cs -------------------------------------------------------------------------------- /server/test/Utils/ReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/ReflectionTest.cs -------------------------------------------------------------------------------- /server/test/Utils/RoundRobinSchedulerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/RoundRobinSchedulerTest.cs -------------------------------------------------------------------------------- /server/test/Utils/TupleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/Utils/TupleTest.cs -------------------------------------------------------------------------------- /server/test/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/server/test/ignores.txt -------------------------------------------------------------------------------- /service/BUILD: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /service/DockingCamera/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/BUILD -------------------------------------------------------------------------------- /service/DockingCamera/src/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/src/API.cs -------------------------------------------------------------------------------- /service/DockingCamera/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/src/Addon.cs -------------------------------------------------------------------------------- /service/DockingCamera/src/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/src/Camera.cs -------------------------------------------------------------------------------- /service/DockingCamera/src/DockingCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/src/DockingCamera.cs -------------------------------------------------------------------------------- /service/DockingCamera/src/KRPC.DockingCamera.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/DockingCamera/src/KRPC.DockingCamera.csproj -------------------------------------------------------------------------------- /service/Drawing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/BUILD -------------------------------------------------------------------------------- /service/Drawing/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/CHANGES.txt -------------------------------------------------------------------------------- /service/Drawing/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Addon.cs -------------------------------------------------------------------------------- /service/Drawing/src/Drawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Drawable.cs -------------------------------------------------------------------------------- /service/Drawing/src/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Drawing.cs -------------------------------------------------------------------------------- /service/Drawing/src/IDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/IDrawable.cs -------------------------------------------------------------------------------- /service/Drawing/src/KRPC.Drawing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/KRPC.Drawing.csproj -------------------------------------------------------------------------------- /service/Drawing/src/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Line.cs -------------------------------------------------------------------------------- /service/Drawing/src/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Polygon.cs -------------------------------------------------------------------------------- /service/Drawing/src/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/Text.cs -------------------------------------------------------------------------------- /service/Drawing/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/src/ignores.txt -------------------------------------------------------------------------------- /service/Drawing/test/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/test/pylint.rc -------------------------------------------------------------------------------- /service/Drawing/test/test_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/test/test_line.py -------------------------------------------------------------------------------- /service/Drawing/test/test_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/test/test_polygon.py -------------------------------------------------------------------------------- /service/Drawing/test/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/Drawing/test/test_text.py -------------------------------------------------------------------------------- /service/InfernalRobotics/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/BUILD -------------------------------------------------------------------------------- /service/InfernalRobotics/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/CHANGES.txt -------------------------------------------------------------------------------- /service/InfernalRobotics/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/Addon.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/IRWrapper/IRAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/IRWrapper/IRAPI.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/IRWrapper/IRNext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/IRWrapper/IRNext.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/IRWrapper/IROrig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/IRWrapper/IROrig.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/IRWrapper/IRWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/IRWrapper/IRWrapper.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/IRWrapper/IServo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/IRWrapper/IServo.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/InfernalRobotics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/InfernalRobotics.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/Servo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/Servo.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/ServoGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/ServoGroup.cs -------------------------------------------------------------------------------- /service/InfernalRobotics/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/src/ignores.txt -------------------------------------------------------------------------------- /service/InfernalRobotics/test/InfernalRobotics.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/test/InfernalRobotics.craft -------------------------------------------------------------------------------- /service/InfernalRobotics/test/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/test/pylint.rc -------------------------------------------------------------------------------- /service/InfernalRobotics/test/test_servo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/test/test_servo.py -------------------------------------------------------------------------------- /service/InfernalRobotics/test/test_servo_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/InfernalRobotics/test/test_servo_group.py -------------------------------------------------------------------------------- /service/KerbalAlarmClock/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/BUILD -------------------------------------------------------------------------------- /service/KerbalAlarmClock/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/CHANGES.txt -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/Addon.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/Alarm.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/AlarmAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/AlarmAction.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/AlarmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/AlarmType.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/KACWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/KACWrapper.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/KerbalAlarmClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/KerbalAlarmClock.cs -------------------------------------------------------------------------------- /service/KerbalAlarmClock/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/KerbalAlarmClock/src/ignores.txt -------------------------------------------------------------------------------- /service/LiDAR/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/BUILD -------------------------------------------------------------------------------- /service/LiDAR/src/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/src/API.cs -------------------------------------------------------------------------------- /service/LiDAR/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/src/Addon.cs -------------------------------------------------------------------------------- /service/LiDAR/src/KRPC.LiDAR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/src/KRPC.LiDAR.csproj -------------------------------------------------------------------------------- /service/LiDAR/src/Laser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/src/Laser.cs -------------------------------------------------------------------------------- /service/LiDAR/src/LiDAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/LiDAR/src/LiDAR.cs -------------------------------------------------------------------------------- /service/RemoteTech/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/BUILD -------------------------------------------------------------------------------- /service/RemoteTech/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/CHANGES.txt -------------------------------------------------------------------------------- /service/RemoteTech/src/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/API.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/Addon.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/Antenna.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/Antenna.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/Comms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/Comms.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/KRPC.RemoteTech.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/KRPC.RemoteTech.csproj -------------------------------------------------------------------------------- /service/RemoteTech/src/RemoteTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/RemoteTech.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/Target.cs -------------------------------------------------------------------------------- /service/RemoteTech/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/src/ignores.txt -------------------------------------------------------------------------------- /service/RemoteTech/test/craft/RemoteTech.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/test/craft/RemoteTech.craft -------------------------------------------------------------------------------- /service/RemoteTech/test/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/test/pylint.rc -------------------------------------------------------------------------------- /service/RemoteTech/test/test_antenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/test/test_antenna.py -------------------------------------------------------------------------------- /service/RemoteTech/test/test_comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/test/test_comms.py -------------------------------------------------------------------------------- /service/RemoteTech/test/test_remotetech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/RemoteTech/test/test_remotetech.py -------------------------------------------------------------------------------- /service/SpaceCenter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/BUILD -------------------------------------------------------------------------------- /service/SpaceCenter/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/CHANGES.txt -------------------------------------------------------------------------------- /service/SpaceCenter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/LICENSE -------------------------------------------------------------------------------- /service/SpaceCenter/src/AutoPilot/PIDController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/AutoPilot/PIDController.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ExternalAPI/AGX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ExternalAPI/AGX.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ExternalAPI/FAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ExternalAPI/FAR.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ExternalAPI/RemoteTech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ExternalAPI/RemoteTech.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ExternalAPIAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ExternalAPIAddon.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/KRPC.SpaceCenter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/KRPC.SpaceCenter.csproj -------------------------------------------------------------------------------- /service/SpaceCenter/src/NameTag/Career.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/NameTag/Career.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/NameTag/NameTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/NameTag/NameTag.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/NameTag/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/NameTag/Utils.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/NameTag/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/NameTag/Window.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/PartForcesAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/PartForcesAddon.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/PartHighlightAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/PartHighlightAddon.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/PilotAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/PilotAddon.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ResourceTransferAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ResourceTransferAddon.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Alarm.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/AlarmClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/AlarmClock.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/AutoPilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/AutoPilot.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Camera.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CameraMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CameraMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CelestialBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CelestialBody.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CommLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CommLink.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CommLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CommLinkType.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CommNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CommNode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Comms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Comms.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Contract.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ContractManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ContractManager.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ContractParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ContractParameter.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ContractState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ContractState.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Control.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ControlMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ControlMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ControlSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ControlSource.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ControlState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ControlState.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CrewMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CrewMember.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/CrewMemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/CrewMemberType.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Flight.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/GameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/GameMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/LaunchSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/LaunchSite.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/MapFilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/MapFilterType.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Node.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Orbit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Orbit.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Antenna.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Antenna.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/CargoBay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/CargoBay.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Decoupler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Decoupler.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/DockingPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/DockingPort.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Engine.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Fairing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Fairing.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Force.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Force.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Intake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Intake.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Leg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Leg.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/LegState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/LegState.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Light.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Module.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Part.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Parts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Parts.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/RCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/RCS.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Radiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Radiator.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Sensor.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Thruster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Thruster.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Parts/Wheel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Parts/Wheel.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/ReferenceFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/ReferenceFrame.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Resource.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Resources.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/SASMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/SASMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/SpaceCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/SpaceCenter.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/SpeedMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/SpeedMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Vessel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Vessel.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/VesselType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/VesselType.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/WarpMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/WarpMode.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/Services/Waypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/Services/Waypoint.cs -------------------------------------------------------------------------------- /service/SpaceCenter/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/ignores.txt -------------------------------------------------------------------------------- /service/SpaceCenter/src/module-manager.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/src/module-manager.cfg -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Basic.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Basic.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Multi.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Multi.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Parts.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Parts.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsAntenna.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsAntenna.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsCargoBay.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsCargoBay.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsEngine.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsEngine.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsFairing.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsFairing.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsIntake.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsIntake.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsLegs.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsLegs.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsRCS.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsRCS.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsRadiator.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsRadiator.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/PartsWheel.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/PartsWheel.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Probe.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Probe.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Resources.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Resources.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Rover.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Rover.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Staging.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Staging.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/craft/Vessel.craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/craft/Vessel.craft -------------------------------------------------------------------------------- /service/SpaceCenter/test/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/pylint.rc -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_autopilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_autopilot.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_body.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_camera.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_comms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_comms.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_contracts.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_control.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_flight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_flight.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_node.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_orbit.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_antenna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_antenna.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_cargo_bay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_cargo_bay.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_decoupler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_decoupler.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_engine.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_experiment.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_fairing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_fairing.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_fuel_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_fuel_lines.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_intake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_intake.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_leg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_leg.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_light.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_module.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_parachute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_parachute.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_part.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_radiator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_radiator.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_rcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_rcs.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_sensor.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_solar_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_solar_panel.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_parts_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_parts_wheel.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_performance.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_referenceframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_referenceframe.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_resource_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_resource_transfer.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_resources.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_spacecenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_spacecenter.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_vessel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_vessel.py -------------------------------------------------------------------------------- /service/SpaceCenter/test/test_waypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/SpaceCenter/test/test_waypoints.py -------------------------------------------------------------------------------- /service/UI/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/BUILD -------------------------------------------------------------------------------- /service/UI/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/CHANGES.txt -------------------------------------------------------------------------------- /service/UI/KRPC.UI.ksp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/KRPC.UI.ksp -------------------------------------------------------------------------------- /service/UI/prefabs/Button.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/prefabs/Button.prefab -------------------------------------------------------------------------------- /service/UI/prefabs/InputField.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/prefabs/InputField.prefab -------------------------------------------------------------------------------- /service/UI/prefabs/Panel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/prefabs/Panel.prefab -------------------------------------------------------------------------------- /service/UI/prefabs/Text.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/prefabs/Text.prefab -------------------------------------------------------------------------------- /service/UI/src/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Addon.cs -------------------------------------------------------------------------------- /service/UI/src/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Button.cs -------------------------------------------------------------------------------- /service/UI/src/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Canvas.cs -------------------------------------------------------------------------------- /service/UI/src/ExtensionMethods/TextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/ExtensionMethods/TextExtensions.cs -------------------------------------------------------------------------------- /service/UI/src/FontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/FontStyle.cs -------------------------------------------------------------------------------- /service/UI/src/InputField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/InputField.cs -------------------------------------------------------------------------------- /service/UI/src/KRPC.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/KRPC.UI.csproj -------------------------------------------------------------------------------- /service/UI/src/MessagePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/MessagePosition.cs -------------------------------------------------------------------------------- /service/UI/src/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Object.cs -------------------------------------------------------------------------------- /service/UI/src/Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Panel.cs -------------------------------------------------------------------------------- /service/UI/src/RectTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/RectTransform.cs -------------------------------------------------------------------------------- /service/UI/src/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/Text.cs -------------------------------------------------------------------------------- /service/UI/src/TextAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/TextAlignment.cs -------------------------------------------------------------------------------- /service/UI/src/TextAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/TextAnchor.cs -------------------------------------------------------------------------------- /service/UI/src/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/UI.cs -------------------------------------------------------------------------------- /service/UI/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/src/ignores.txt -------------------------------------------------------------------------------- /service/UI/test/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/pylint.rc -------------------------------------------------------------------------------- /service/UI/test/test_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/test_button.py -------------------------------------------------------------------------------- /service/UI/test/test_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/test_canvas.py -------------------------------------------------------------------------------- /service/UI/test/test_input_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/test_input_field.py -------------------------------------------------------------------------------- /service/UI/test/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/test_text.py -------------------------------------------------------------------------------- /service/UI/test/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/UI/test/test_ui.py -------------------------------------------------------------------------------- /service/build.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/service/build.bzl -------------------------------------------------------------------------------- /tools/ServiceDefinitions/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ServiceDefinitions/BUILD -------------------------------------------------------------------------------- /tools/ServiceDefinitions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ServiceDefinitions/LICENSE -------------------------------------------------------------------------------- /tools/ServiceDefinitions/build.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ServiceDefinitions/build.bzl -------------------------------------------------------------------------------- /tools/ServiceDefinitions/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ServiceDefinitions/src/Program.cs -------------------------------------------------------------------------------- /tools/ServiceDefinitions/src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ServiceDefinitions/src/app.config -------------------------------------------------------------------------------- /tools/TestServer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/BUILD -------------------------------------------------------------------------------- /tools/TestServer/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/README.txt -------------------------------------------------------------------------------- /tools/TestServer/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/docker/Dockerfile -------------------------------------------------------------------------------- /tools/TestServer/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/docker/Makefile -------------------------------------------------------------------------------- /tools/TestServer/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/docker/README.md -------------------------------------------------------------------------------- /tools/TestServer/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/src/Program.cs -------------------------------------------------------------------------------- /tools/TestServer/src/TestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/src/TestServer.csproj -------------------------------------------------------------------------------- /tools/TestServer/src/TestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/src/TestService.cs -------------------------------------------------------------------------------- /tools/TestServer/src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/src/app.config -------------------------------------------------------------------------------- /tools/TestServer/src/ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestServer/src/ignores.txt -------------------------------------------------------------------------------- /tools/TestingTools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/BUILD -------------------------------------------------------------------------------- /tools/TestingTools/src/AutoLoadGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/src/AutoLoadGame.cs -------------------------------------------------------------------------------- /tools/TestingTools/src/AutoSwitchVessel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/src/AutoSwitchVessel.cs -------------------------------------------------------------------------------- /tools/TestingTools/src/OrbitTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/src/OrbitTools.cs -------------------------------------------------------------------------------- /tools/TestingTools/src/TestingTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/src/TestingTools.cs -------------------------------------------------------------------------------- /tools/TestingTools/src/TestingTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/TestingTools/src/TestingTools.csproj -------------------------------------------------------------------------------- /tools/bazel-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat .bazelversion 4 | -------------------------------------------------------------------------------- /tools/build-against-all-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build-against-all-versions.sh -------------------------------------------------------------------------------- /tools/build/BUILD: -------------------------------------------------------------------------------- 1 | exports_files(['csharp_gendarme_rules.xml']) 2 | -------------------------------------------------------------------------------- /tools/build/autotools.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/autotools.bzl -------------------------------------------------------------------------------- /tools/build/checkstyle/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/checkstyle/BUILD -------------------------------------------------------------------------------- /tools/build/checkstyle/default.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build/checkstyle/google_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/checkstyle/google_checks.xml -------------------------------------------------------------------------------- /tools/build/client_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/client_test.bzl -------------------------------------------------------------------------------- /tools/build/cpp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/cpp.bzl -------------------------------------------------------------------------------- /tools/build/cpplint/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/cpplint/BUILD -------------------------------------------------------------------------------- /tools/build/csharp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/csharp.bzl -------------------------------------------------------------------------------- /tools/build/csharp_gendarme_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/csharp_gendarme_rules.xml -------------------------------------------------------------------------------- /tools/build/image.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/image.bzl -------------------------------------------------------------------------------- /tools/build/java.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/java.bzl -------------------------------------------------------------------------------- /tools/build/ksp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/ksp/BUILD -------------------------------------------------------------------------------- /tools/build/lua.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/lua.bzl -------------------------------------------------------------------------------- /tools/build/mono-4.5/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/mono-4.5/BUILD -------------------------------------------------------------------------------- /tools/build/pkg.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/pkg.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/BUILD -------------------------------------------------------------------------------- /tools/build/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/LICENSE -------------------------------------------------------------------------------- /tools/build/protobuf/cpp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/cpp.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/csharp.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/csharp.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/java.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/java.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/lua.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/lua.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/nanopb.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/nanopb.bzl -------------------------------------------------------------------------------- /tools/build/protobuf/python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/protobuf/python.bzl -------------------------------------------------------------------------------- /tools/build/pycodestyle/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/pycodestyle/BUILD -------------------------------------------------------------------------------- /tools/build/pylint/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/pylint/BUILD -------------------------------------------------------------------------------- /tools/build/python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/python.bzl -------------------------------------------------------------------------------- /tools/build/sphinx.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/build/sphinx.bzl -------------------------------------------------------------------------------- /tools/cslibs/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/cslibs/BUILD -------------------------------------------------------------------------------- /tools/dist/changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/changes.py -------------------------------------------------------------------------------- /tools/dist/genfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/genfiles.sh -------------------------------------------------------------------------------- /tools/dist/github-changes.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/github-changes.tmpl -------------------------------------------------------------------------------- /tools/dist/krpctools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/krpctools.sh -------------------------------------------------------------------------------- /tools/dist/luarocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/luarocks.sh -------------------------------------------------------------------------------- /tools/dist/nuget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/nuget.sh -------------------------------------------------------------------------------- /tools/dist/pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/dist/pypi.sh -------------------------------------------------------------------------------- /tools/do-serve-docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/do-serve-docs.py -------------------------------------------------------------------------------- /tools/docker/.gitignore: -------------------------------------------------------------------------------- 1 | krpc.tar 2 | -------------------------------------------------------------------------------- /tools/docker/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/CHANGES.txt -------------------------------------------------------------------------------- /tools/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/Dockerfile -------------------------------------------------------------------------------- /tools/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/Makefile -------------------------------------------------------------------------------- /tools/docker/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.5.1 2 | -------------------------------------------------------------------------------- /tools/docker/bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/bazelrc -------------------------------------------------------------------------------- /tools/docker/ec2-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/ec2-script.sh -------------------------------------------------------------------------------- /tools/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/docker/entrypoint.sh -------------------------------------------------------------------------------- /tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/install.sh -------------------------------------------------------------------------------- /tools/krpc-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpc-version.sh -------------------------------------------------------------------------------- /tools/krpctest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/BUILD -------------------------------------------------------------------------------- /tools/krpctest/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/CHANGES.txt -------------------------------------------------------------------------------- /tools/krpctest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/LICENSE -------------------------------------------------------------------------------- /tools/krpctest/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/MANIFEST.in -------------------------------------------------------------------------------- /tools/krpctest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/README.txt -------------------------------------------------------------------------------- /tools/krpctest/krpctest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/__init__.py -------------------------------------------------------------------------------- /tools/krpctest/krpctest/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/geometry.py -------------------------------------------------------------------------------- /tools/krpctest/krpctest/krpctest.sfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/krpctest.sfs -------------------------------------------------------------------------------- /tools/krpctest/krpctest/krpctest_career.sfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/krpctest_career.sfs -------------------------------------------------------------------------------- /tools/krpctest/krpctest/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/krpctest/krpctest/test/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/test/test_geometry.py -------------------------------------------------------------------------------- /tools/krpctest/krpctest/test/test_testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/krpctest/test/test_testcase.py -------------------------------------------------------------------------------- /tools/krpctest/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/pylint.rc -------------------------------------------------------------------------------- /tools/krpctest/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctest/setup.py -------------------------------------------------------------------------------- /tools/krpctools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/BUILD -------------------------------------------------------------------------------- /tools/krpctools/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/CHANGES.txt -------------------------------------------------------------------------------- /tools/krpctools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/LICENSE -------------------------------------------------------------------------------- /tools/krpctools/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/MANIFEST.in -------------------------------------------------------------------------------- /tools/krpctools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/README.txt -------------------------------------------------------------------------------- /tools/krpctools/clientgen.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/clientgen.bzl -------------------------------------------------------------------------------- /tools/krpctools/docgen.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/docgen.bzl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/__init__.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/__init__.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/cnano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/cnano.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/cnano.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/cnano.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/cpp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/cpp.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/csharp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/csharp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/csharp.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/docparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/docparser.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/generator.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/java.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/java.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/java.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/python.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/clientgen/python.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/clientgen/python.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/__init__.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/cnano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/cnano.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/cnano.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/cnano.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/cpp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/cpp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/cpp.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/csharp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/csharp.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/csharp.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/docgen.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/domain.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/extensions.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/java.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/java.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/java.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/lua.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/lua.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/lua.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/nodes.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/python.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/python.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/python.tmpl -------------------------------------------------------------------------------- /tools/krpctools/krpctools/docgen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/docgen/utils.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/cnano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/cnano.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/cpp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/csharp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/java.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/language.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/lua.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/lang/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/lang/python.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/servicedefs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/servicedefs/__init__.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/Empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/Empty.json -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/clientgentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/clientgentest.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/docgentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/docgentest.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/test_docgen_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/test_docgen_cpp.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/test_docgen_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/test_docgen_java.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/test/test_docgen_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/test/test_docgen_lua.py -------------------------------------------------------------------------------- /tools/krpctools/krpctools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/krpctools/utils.py -------------------------------------------------------------------------------- /tools/krpctools/pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/pylint.rc -------------------------------------------------------------------------------- /tools/krpctools/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/krpctools/setup.py -------------------------------------------------------------------------------- /tools/ksp-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/ksp-version.sh -------------------------------------------------------------------------------- /tools/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/pre-commit.sh -------------------------------------------------------------------------------- /tools/run-ksp-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/run-ksp-remote.sh -------------------------------------------------------------------------------- /tools/run-ksp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/run-ksp.sh -------------------------------------------------------------------------------- /tools/serve-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/serve-docs.sh -------------------------------------------------------------------------------- /tools/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/settings.cfg -------------------------------------------------------------------------------- /tools/strip-bom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/strip-bom.sh -------------------------------------------------------------------------------- /tools/travis-ci/before-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/before-deploy.sh -------------------------------------------------------------------------------- /tools/travis-ci/local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/local.sh -------------------------------------------------------------------------------- /tools/travis-ci/script-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/script-docker.sh -------------------------------------------------------------------------------- /tools/travis-ci/script-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/script-windows.sh -------------------------------------------------------------------------------- /tools/travis-ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/script.sh -------------------------------------------------------------------------------- /tools/travis-ci/set-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/travis-ci/set-version.py -------------------------------------------------------------------------------- /tools/update-arduino-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/update-arduino-library.sh -------------------------------------------------------------------------------- /tools/update-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/update-docs.sh -------------------------------------------------------------------------------- /tools/update-workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/update-workspace.py -------------------------------------------------------------------------------- /tools/wstest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullprofile/krpc/HEAD/tools/wstest.sh --------------------------------------------------------------------------------