Editing Space Shuttle Deluxe
Jump to navigation
Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
− | {{Addon | + | {{Addon|1=[http://www.orbithangar.com/searchid.php?ID=2761 OrbitHangar]|2=Kwan3217, Donamy, Panchi, [[#Help Wanted|You!]]}} |
− | |1=[http://www.orbithangar.com/searchid.php?ID=2761 OrbitHangar] | + | [[Category:Addons]] |
− | |2=Kwan3217, Donamy, Panchi | + | [[Category:Vessel addons]] |
− | | | + | [[category:realistic addons]] |
− | }} | ||
− | + | Space Shuttle Deluxe is based on the code and model of the stock Atlantis which comes with Orbiter 060929. Since it is in a state of continuous slow flux, it is better to host its manual here. | |
− | Space Shuttle Deluxe is based on the code and model of the stock Atlantis which comes with Orbiter | ||
− | |||
− | |||
== Credits == | == Credits == | ||
Line 17: | Line 13: | ||
VC 3D panels and textures by Don Gallagher (Donamy). Copyright © 2006-2007 Don Gallagher. | VC 3D panels and textures by Don Gallagher (Donamy). Copyright © 2006-2007 Don Gallagher. | ||
− | + | Our changes are released under the GNU Library GPL. As this is a derivative work of the stock Atlantis, Martin Schweiger and the other original authors retain copyright on the parts we didn’t change. Martin’s original work is used by permission. | |
+ | |||
+ | == Help Wanted == | ||
+ | If you want to add any features to Space Shuttle Deluxe, and you feel you have the skills, let us know! We need | ||
+ | *Test Pilots | ||
+ | *Feature Suggestions | ||
+ | *People willing to code features | ||
+ | |||
+ | Our project is intended to be open to anyone with skills relating to developing addons. Coding, modeling, texturing, documentation, test pilots, whatever. If you wish to participate, send a forum PM to kwan3217 stating how you wish to contribute. | ||
+ | |||
+ | Anyone is welcome to look at our code, see how we did stuff, and incorporate our ideas into their projects. Anyone is welcome to include code from our project into theirs, subject to the terms of the GNU Library GPL. I’m in the process of setting up read-only anonymous access to the source code repository, but before that, PM me to get instructions on how to get the code. | ||
+ | |||
== User Manual == | == User Manual == | ||
+ | === Introduction === | ||
+ | Kwan Space Shuttle is an effort by members of the Orbiter Forum (http://orbit.m6.net/forum/) to improve the stock Atlantis. For instance, the RMS arm does not act anything like the arm in the real shuttle. The instrument panels are very realistically rendered, but most of the switches and buttons are inert. The aerodynamic model is inadequate for simulating reentry. | ||
+ | |||
+ | Kwan is from a Tagalog word, meaning “whatever.” It is used in place of a noun or verb | ||
+ | |||
+ | Our aim is to make a model of the Space Shuttle which is as realistic as possible, at the expense of everything, including possibly ease of use. Remember, Orbiter is no game. | ||
+ | |||
+ | This manual discusses the changes implemented so far in this project, and how to use them | ||
+ | |||
=== Inverse Kinematics RMS Arm === | === Inverse Kinematics RMS Arm === | ||
− | + | ==== Introduction ==== | |
Kinematics is the study of motion, independent of force (that’s dynamics). In robotics, forward kinematics is the method of using the joint rotation angles and other actuator states to determine the location of the end effector. Inverse kinematics, or IK, is the method used to find joint angles given a target location. | Kinematics is the study of motion, independent of force (that’s dynamics). In robotics, forward kinematics is the method of using the joint rotation angles and other actuator states to determine the location of the end effector. Inverse kinematics, or IK, is the method used to find joint angles given a target location. | ||
Line 28: | Line 44: | ||
On the real space shuttle, the RMS arm is controlled primarily by the aft translation and rotation controllers. The translation controller is used to move the end effector, and the rotation controller is used to aim it. In this mode, the arm computer figures out what speed to rotate each joint at in order to satisfy a translation or rotation command. The crew can control the arm manually by moving each joint, but this is clearly not the easiest way to do it. Up to now in Orbiter, only this manual joint-by-joint mode has been available. This addon fixes that. It allows you to command a translation of the end effector, and have the machine satisfy it in whatever way is necessary. | On the real space shuttle, the RMS arm is controlled primarily by the aft translation and rotation controllers. The translation controller is used to move the end effector, and the rotation controller is used to aim it. In this mode, the arm computer figures out what speed to rotate each joint at in order to satisfy a translation or rotation command. The crew can control the arm manually by moving each joint, but this is clearly not the easiest way to do it. Up to now in Orbiter, only this manual joint-by-joint mode has been available. This addon fixes that. It allows you to command a translation of the end effector, and have the machine satisfy it in whatever way is necessary. | ||
+ | ==== How to use IK ==== | ||
The control panel (pictured to the right) is similar to the standard RMS control panel, with the addition of a new cluster of buttons, marked “Translation”. These buttons are used to directly command the end effector to move in a straight line along one of the cargo bay axes. | The control panel (pictured to the right) is similar to the standard RMS control panel, with the addition of a new cluster of buttons, marked “Translation”. These buttons are used to directly command the end effector to move in a straight line along one of the cargo bay axes. | ||
Line 40: | Line 57: | ||
All of the other direct joint buttons still work as before. The only other difference is that the arm, when stowed, goes to a perfectly straight configuration. | All of the other direct joint buttons still work as before. The only other difference is that the arm, when stowed, goes to a perfectly straight configuration. | ||
+ | |||
+ | ==== How to include IK in your own vessel ==== | ||
+ | This section is only for those who code their own vessels. If you don’t intend to build the arm into your own program, you don’t have to read this section. | ||
+ | |||
+ | The IK arm requires a change to the Atlantis.rc resource file to include the new buttons, new code in the dialog handler to handle these buttons, a couple of functions to handle the IK itself, and additions to the orbiter setup to set things up for IK. | ||
+ | |||
+ | Most of the new code is in Atlantis.cpp. This includes the new function SetAnimationIKArm to actually move the arm in response to a command, changes to RMS_DlgProc to handle the new buttons and generate IK commands, and additions to DefineAnimations to gather the correct information about the arm geometry that the IK routine needs. It also includes code incidental to the new aerodynamic model and code which flaps the body flap. | ||
+ | |||
+ | A separate tech note the derivation of the forward and inverse kinematics equations is included in this package. | ||
=== Aerodynamics and Mass model improvements === | === Aerodynamics and Mass model improvements === | ||
Line 54: | Line 80: | ||
=== Payload Bay Cameras === | === Payload Bay Cameras === | ||
− | + | There are five new camera views: The four cameras at the corners of the payload bay, and the camera on the RMS end effector. These are accessable as normal VC views by pressing Ctrl-Arrow. A chart of the available VC views, including old cockpit views and new camera views, appears below. | |
− | There are five new camera views: The four cameras at the corners of the payload bay, and the camera on the RMS end effector. These are accessable as normal VC views by pressing | ||
{|border=1 | {|border=1 | ||
Line 78: | Line 103: | ||
|} | |} | ||
− | Also, the new Payload camera control panel is available. To access it, press | + | Also, the new Payload camera control panel is available. To access it, press ctrl-Space, then select Payload camera operations. To rotate a camera, select it with the Camera radio button, then use the rotation controls to pan the camera. |
=== Landing Gear Control === | === Landing Gear Control === | ||
The landing gear is now controlled by the buttons on panel F6, right below the Commander's MFDs. There are two covered buttons there, one to arm the landing gear system (ARM) and one to lower the gear (DN). | The landing gear is now controlled by the buttons on panel F6, right below the Commander's MFDs. There are two covered buttons there, one to arm the landing gear system (ARM) and one to lower the gear (DN). | ||
− | You can use {{ | + | You can use {{key|Ctrl}}-{{key|G}} to arm the gear, and {{key|G}} to lower them |
'''DO NOT''' lower the landing gear in space, as you can't re-raise them. | '''DO NOT''' lower the landing gear in space, as you can't re-raise them. | ||
− | = | + | === Known issues, bugs, and other unplanned features === |
− | + | Bugs? Surely you jest! Well, maybe one or two… | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | == Known issues, bugs, and other unplanned features == | ||
− | Bugs? Surely you jest! Well, maybe one or | ||
*Don’t use the Payload camera rotation controls when you are not looking through a payload camera. Doing this will cause the camera to look at an odd angle, and no longer respond to the rotation control butons. To fix this, just hop to a different VC location, then hop back. | *Don’t use the Payload camera rotation controls when you are not looking through a payload camera. Doing this will cause the camera to look at an odd angle, and no longer respond to the rotation control butons. To fix this, just hop to a different VC location, then hop back. | ||
+ | *The MPS engine steering still only uses the center engine to counteract changes in thrust in the SRBs. Near SRB burnout, the center engine pitch will increase to unreasonable levels. | ||
*MPS engine yaw steering is not pure yaw. Some of the yaw command couples into the roll axis. | *MPS engine yaw steering is not pure yaw. Some of the yaw command couples into the roll axis. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |