Jump to content

Lookerksy

Members
  • Posts

    54
  • Joined

  • Last visited

Everything posted by Lookerksy

  1. Please add new feature: Now KSP supports USER AXIS INPUT. Player can set USER AXIS INPUT to model airplane controller. (Menu-Settings-Input-Vessel-AxisActions) Please add them to Pilot Input (Structure Control). Thanks.
  2. In InfernalRobotics_v3.0.2 + KSP 1.9.1, I find the Robotic Part has angle resolution ( 1 degree ) in KSP Field "target position". I will get 77 degree if I set 76.54321 degree. It's a rounding value. I don't like this feature. I want precise input. Is there any way to angle change the resolution to a smaller value? Thanks.
  3. I find there has "MOMENT_OF_INERTIA" (unit: kg*m^2) in kRPC Documentation. (http://krpc.github.io/krpc/python/api/space-center/vessel.html) It means API including it. Maybe it can be added into the next version kOS ? (unit: ton*m^2) I admit it's difficult to calculate the moment of inertia of the vessel. I designed experiment to measure different parts, but I can't explain all the result by formulas in physics textbook. If there is a way to get the moment of inertia directly, there won't be so much trouble.
  4. I found: // kOS 1.2.1 in KSP 1.9.1 Local Function ppp { Parameter a. Set b to a+5. Local c to a+6. Print "a is "+a. //show: a is 10 Print "b is "+b. //show: b is 15 Print "c is "+c. //show: c is 30 Return True. } Lock a to 10. Lock b to 20. Lock c to 30. ppp( 40 ). It looks that the LOCKED variable have priority over function PARAMETER and Local variable. Is it bug? Thanks.
  5. Has anyone know how to get moment of inertia about vessel? Thanks. I find SHIP:ANGULARMOMENTUM and SHIP:ANGULARVEL but I get a strange results if I divide ANGULARMOMENTUM by ANGULARVEL.
  6. Thank you. Inspired by your reply, I find Ship:Body:Position:Mag-Ship:Body:Radius can tell me the altitude of mass center.
  7. Has anyone know how to get position about center of mass? Thanks. I use Ship:Altitude, but it doesn't work well. It's about position of root part, not center of mass.
  8. kOS has User Function. Will kOS has User Structure? I want to write PID controller by myself. But kOS's PIDLoop Structure can not be changed.
  9. Can anyone recommend me an IDE to write kOS codes? Thanks.
  10. Hi, Author. I wonder if you will add the support for Robotics parts of DLC "Breaking Ground Expansion"? Thanks.
  11. Hi, Author. I wonder if you will make new IR parts based on the DLC "Breaking Ground Expansion"? Thanks.
  12. Hi, author. I noticed that the IR-Next has been updated to InfernalRobotics_v3.0.0_beta4p1. And the Addons:IR of latest version kOS doesn't support it. Will you plan to support new IR-Next in the next version? Thanks.
  13. Add some new thing in Action Groups? In general, if I press GroupAction "Move +" for two times, the second "Move +" will cancel the first one. So the second operation means "Stop". But it 's so easy to lead to a misoperation. In order to let IR operation be clear, could you add a new Group Action "Stop Move" to all robotic part? Thanks. I find 2 problem about IR_v3.0.0_beta3_p4_for_1.3.1. The first problem is about all Robotic part. The Second one is about Rotatron Robotic part. 1st problem: (I test with Part "Joint Plvotron - Basic") [Step1] Strat to trun left the IR part. [Step2] Start trun right the IR part when rotating. The result: It moved to right limit suddenly. (The button "MoveToCenter" has the similar behavior.) 2nd problem: (I test with Part "Rotatron - Basic") [Step1] Start to trun left the IR part. [Step2] Start to I trun right the IR part when rotating. The result: The IR part stopped forever. And it won't execute any new order. (The button "MoveToCenter" has the similar behavior. Somtimes the game will even crash.)
  14. I find the kOS_v.1.1.5.0_for_KSP_1.3.1 didn't work with InfernalRobotics_3.0.0_beta3_p7_for_KSP_1.3.1. When I check ADDONS:IR:AVAILABLE, the result is FALSE. Have you the plan to repair this problem in next kOS version? Thanks.
  15. That's great. I think I can expect the next version :-)
  16. I found some strange things when using this mod. (ProceduralParts-1.2.12, KSP v.1.3.0) They are both about the part "Procedural SRB". 1) When I set a large thrust (diameter=2.5m, thrust=about 3000kN) in VAB and lanuched it, the nozzle became smaller (and there has a gap to the next part), and the thrust also became lower (720 kN). It seems that the thrust of the Procedural SRB will never be over 720kN (ASL)... Is it a BUG? 2) First I set "gimbalRange" to 20 in cfg file. Then I found the nozzle action only was responsive to one of pitch or yaw control. It seems that the gimbal is only about one-axis. Is it a BUG of FEATURE? I hope it's about two-axis. --------------------------------------------------- If I want to more thrust and two-axis gimbal, What shall I do? Thanks.
  17. Can anyone help me? I use both IR-2.0.12 and KJR-v3.3.3 in KSP-1.3. But I find KJR works well except for IR PART. The joint looks so soft. What shall I do? Thanks.
  18. Author sir, all the time, kOS lacks some an effective way to get the overheat information of parts. kOS players have no way to get heat alarm. They have no chance to make something to avoid overheating explosion. Please, shall we change this situation? Suggestion: How about adding a new scalar field named "OverHeat" into structure PART ? "OverHeat" stands for a overheat bar of the part. Its range can be 0.0 to 1.0. Zero value means the part's temperature is safe. Also, how about adding a new list named "OverHeatParts" into structure VESSEL ? It will be a list of all parts with dangerous temperature. Thanks.
  19. Hi, welcome. (*゚▽゚*)
  20. I find I can get the position of BDA missile by the order "list targets.". But I don't know how to get the position of BDA bullets. Anyone know something about this? Thanks.
  21. How can I get the Drag of my vessel when moving vertically? Now I calculate the drag value by Acceleration, Mass and Gravity. Has any other way more simple? Thanks.
  22. In next version, would you mind add part's temperature data (current temp & max temp) into right-mouse menu of the part? Sometimes when my vessel flight at high speed, my kOS program can't find any information to tell me how to do to avoid overheat explosion. Thanks.
  23. When I try to use IRServo:MoveTo(), I got a Error saying: "Object reference not set to an instance of an object" Could anyone tell me how shall I correct it? The following is my codes: print ADDONS:IR:GROUPS[0]:servos[0]:name. //This order works well. ADDONS:IR:GROUPS[0]:servos[0]:moveto(47,2). //The Error happened. And the position is the second parameter "2". wait 10. Thanks. PS: KSP 1.1.2 64x + kOS 0.20.1 + IR-2.0.2-Final-Full
×
×
  • Create New...