From: <sv...@ww...> - 2004-12-18 11:00:49
|
Author: delta Date: 2004-12-18 03:00:39 -0800 (Sat, 18 Dec 2004) New Revision: 1405 Modified: trunk/CSP/CSPSim/CHANGES.current trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/model.xml trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/systems.xml Log: * Until we make a more accurate FCS, we'll use the animation binding to provide a better visual approximation of the animations of the "ailerons" and "elevators". * Deflection limits are set to -16 deg and +25 deg. ==> ALL USERS: run RebuildData.py. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1405 Modified: trunk/CSP/CSPSim/CHANGES.current =================================================================== --- trunk/CSP/CSPSim/CHANGES.current 2004-12-18 10:54:46 UTC (rev 1404) +++ trunk/CSP/CSPSim/CHANGES.current 2004-12-18 11:00:39 UTC (rev 1405) @@ -1,5 +1,15 @@ Version 0.4.0 (in progress) -=========================== +=========================== + +2004-12-18: delta +* Until we make a more accurate FCS, we'll use the animation binding to + provide a better visual approximation of the animations of the "ailerons" + and "elevators". + +* Deflection limits are set to -16 deg and +25 deg. + +==> ALL USERS: run RebuildData.py. + 2004-12-17: onsight * Add a message box to the onscreen display that displays/scrolls several lines of text, and fades out when unchanged for several seconds. @@ -20,10 +30,10 @@ * Updated FlightModel and m2k xml related files. ==> ALL USERS: run RebuildData.py. - + 2004-12-17: Lologramme * Add hangar - + 2004-12-16: Lologramme * add control tower @@ -50,16 +60,19 @@ ==> Run ComplileData.py after updating to pick up the changes. +2004-12-15: delta + * Moved the aircraft at start up to be at the bottom of the runway. + 2004-12-14: onsight * Minor fix for the engine cutoff function under linux. 2004-12-13: Lologramme * Replace Runway by New runway with taxi and roads - + 2004-12-14: delta * Minor anti-warnings changes in SimCore/Battlefield/LocalBattlefield.cpp. - * Slighty flatten the joystick inputs. + * Slighty flatten the joystick inputs. * Other minor changes. Modified: trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/model.xml =================================================================== --- trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/model.xml 2004-12-18 10:54:46 UTC (rev 1404) +++ trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/model.xml 2004-12-18 11:00:39 UTC (rev 1405) @@ -29,27 +29,51 @@ <Vector name="axis">0 -0.34 0.94</Vector> </Object> + <Object class="DrivenRotation"> + <String name="channel_name">ControlSurfaces.ElevatorDeflection</String> + <Key name="model_id">Aircraft.LeftOuterAileron</Key> + <Int name="lod_limit">1</Int> + <Vector name="axis">-1 0 0</Vector> + </Object> <Object class="DrivenRotation"> <String name="channel_name">ControlSurfaces.ElevatorDeflection</String> <Key name="model_id">Aircraft.LeftAileron</Key> <Int name="lod_limit">1</Int> <Vector name="axis">-1 0 0</Vector> </Object> + <Object class="DrivenRotation"> + <String name="channel_name">ControlSurfaces.ElevatorDeflection</String> + <Key name="model_id">Aircraft.RightOuterAileron</Key> + <Int name="lod_limit">1</Int> + <Vector name="axis">-1 0 0</Vector> + </Object> <Object class="DrivenRotation"> <String name="channel_name">ControlSurfaces.ElevatorDeflection</String> <Key name="model_id">Aircraft.RightAileron</Key> <Int name="lod_limit">1</Int> <Vector name="axis">-1 0 0</Vector> </Object> - + <Object class="DrivenRotation"> <String name="channel_name">ControlSurfaces.AileronDeflection</String> <Key name="model_id">Aircraft.LeftOuterAileron</Key> <Int name="lod_limit">1</Int> <Vector name="axis">1 0 0</Vector> </Object> + <Object class="DrivenRotation"> + <String name="channel_name">ControlSurfaces.AileronDeflection</String> + <Key name="model_id">Aircraft.LeftAileron</Key> + <Int name="lod_limit">1</Int> + <Vector name="axis">1 0 0</Vector> + </Object> <Object class="DrivenRotation"> <String name="channel_name">ControlSurfaces.AileronDeflection</String> + <Key name="model_id">Aircraft.RightAileron</Key> + <Int name="lod_limit">1</Int> + <Vector name="axis">-1 0 0</Vector> + </Object> + <Object class="DrivenRotation"> + <String name="channel_name">ControlSurfaces.AileronDeflection</String> <Key name="model_id">Aircraft.RightOuterAileron</Key> <Int name="lod_limit">1</Int> <Vector name="axis">-1 0 0</Vector> Modified: trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/systems.xml =================================================================== --- trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/systems.xml 2004-12-18 10:54:46 UTC (rev 1404) +++ trunk/CSP/CSPSim/Data/XML/vehicles/aircraft/m2k/systems.xml 2004-12-18 11:00:39 UTC (rev 1405) @@ -4,10 +4,10 @@ <List name="subsystems"> <Object class="AircraftInputSystem" /> <Object class="AircraftSimpleFCS"> - <Float name="elevator_limit0">-25.0</Float> + <Float name="elevator_limit0">-16.0</Float> <Float name="elevator_limit1">25.0</Float> <Float name="aileron_limit0">-16</Float> - <Float name="aileron_limit1">16</Float> + <Float name="aileron_limit1">25</Float> <Float name="rudder_limit">30.0</Float> <Float name="airbrake_limit">60.0</Float> <Float name="elevator_rate">60.0</Float> |