Jump to content

Rich

Members
  • Posts

    1,056
  • Joined

  • Last visited

Everything posted by Rich

  1. The next update is likely to include more API support for resource information (per stage), units for sensors and of course several bug fixes. I have no idea on the time scale. I have not tried this, but I want to. I would love to do this then set up the ISA map on a projector. API calls exist to do both of these, but you will need to use C# or JavaScript to do it.
  2. The camera and multiple vessel support will be implemented in the future, but these aren't priority right now.
  3. Copy the two MODULE definitions from the larger antenna's configuration file, to the configuration file for your desired part. This is not possible due to the restrictions on KSP.IO. If you want Telemachus to serve files they will need to be in the PluginData folder.
  4. There are more testers than developers for KSP.
  5. It is certainly posible to map voice commands to KSP controls, but the demo I have written is no where near ready for release. There is nothing more satisfying than saying "activate" and seeing your solar panels extend.
  6. The development team has stated that Kerbals are genderless. This thread will now be closed due to 3 reasons: it has an official answer; it has been discussed before many times before and usual ends in sexist tones surfacing.
  7. Yeah, that is the correct file. The only other test I can think of is to try your computer's LAN IP, that or your firewall is blocking the socket from listening.
  8. Do you have a g-force sensor installed on your craft and turned on? The surface information page has roll, pitch and yaw readouts, but no the throttle information;however, that would be easy enough to include. Have you tried adjusting the port number?
  9. Motivation isn't the issue here; what I need is more hours in the day. I want to add integration to the Remote Tech plugin which will add communication delay. I commissioned a TV aerial because I found the notion of having one protruding from the side of a rocket hilarious. What you are describing is unintended behaviour, and I have only seen this happen when Telemachus has been upgraded within a persistence file. I this problem still occurs in a fresh file then it is indeed a bug which I need to fix.
  10. I personally do not think this is a good idea; these threads contain useful information which is invariant to version, such as feature requests, tutorials and troubleshooting.
  11. Aftokinito, that's most likely what will happen, since it will solve a lot of issues if the camera output is displayed on the KSP screen in addition to being sent over the network.
  12. It is possible that Unity is preventing those threads from operating on different cores, and this probably indicates that it is time for optimisation. This feature is not likely to be completed any time soon, as I feel there are more pressing features. I have several plans involving this.
  13. You may fix the modification for personal use, but not distribute the fix unless the licence allows such an activity. You have several options. If the licence is not clear, then maybe you can ask the mod author if the patch can be temporarily distributed. Another strategy, if you are that dependent on modifications, is to stick with 0.19 until fixes are released.
  14. You will need to e-mail SQUAD support about this issue, as the community team has no control over the store. You can find the appropriate e-mail address on the main KSP site.
  15. The server is built using asynchronous sockets so the majority of the processing is done using the system thread pool: The only processing which is not done on a separate thread are the commands which change the state of the craft, such as staging, since KSP will explode horribly if updated from another thread. I planned on getting it to read out figures in response to voice commands, but I see no reason why this could not be done automatically.
  16. Hopefully that will sort itself out when the values are the correct way around.
  17. To change the graphs' background to black: 1. Open the file named jKSPWAPIGraph.js the PluginData folder. 2. Replace this line: chart.draw(google.visualization.arrayToDataTable(rawData), options); with this line: chart.draw(google.visualization.arrayToDataTable(rawData), $.extend(options,{ backgroundColor: { fill: "#000000" } }));
  18. Not currently, the resources API is lacking several pieces of data such as your suggestion and per stage information. I will see what I can do in terms of adding these to the next development build.
  19. Feel free to be as critical as you wish , as I appreciate the feedback. Good work on getting the port forwarding to work, as normally this is the most troublesome. Correct, you should be able to use your static IP address to connect to the computer running KSP; however, I am unsure as to what is preventing the connection in this case as your port forwarding is working. I love networking ...
  20. Awesome! I am always pleased to see what people have made using web technologies and the Telemachus API, and as such I hope you continue with this project
  21. New development version in the OP. I will have to apologise for the fact that the translation implementation does not use buttons as suggested, as a result of several issues. I decided to tweak the Touchball so that it now has a dead zone around the the x and y axis and lower sensitivity. For example, if you want to translate forwards (touchball-xyz.html), use a single tap on the negative part of the y axis. I will continue to tweak this input method and work on the inclusion of buttons.
×
×
  • Create New...