From: <sv...@ww...> - 2005-02-21 23:04:00
|
Author: delta Date: 2005-02-21 15:03:53 -0800 (Mon, 21 Feb 2005) New Revision: 1483 Modified: trunk/CSP/CSPSim/Bin/CSPSim.py trunk/CSP/CSPSim/CHANGES.current Log: * Minor change to the m2k model to correctly retract the right gear. * Minor patch to CSPSim.py to execute cspinput in case an hid file is missing. cspinput is not an executable on windows and must be called as an argument of python(.exe). Should be checked on GNU/Linux to be sure it doesn't break the stuff there. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1483 Modified: trunk/CSP/CSPSim/Bin/CSPSim.py =================================================================== --- trunk/CSP/CSPSim/Bin/CSPSim.py 2005-02-21 20:55:56 UTC (rev 1482) +++ trunk/CSP/CSPSim/Bin/CSPSim.py 2005-02-21 23:03:53 UTC (rev 1483) @@ -62,7 +62,7 @@ tool_path = os.path.join('..', 'Tools', 'HID') csp_input = os.path.join(tool_path, 'cspinput') example = os.path.join(tool_path, 'Examples', '%s.map' % hid_file) - os.system('%s -I%s -o%s %s' % (csp_input, tool_path, output, example)) + os.system('python %s -I%s -o%s %s' % (csp_input, tool_path, output, example)) if os.path.exists(output): print 'Default input map created for %s.hid; see Tools/HID/README for details.' % hid_file else: Modified: trunk/CSP/CSPSim/CHANGES.current =================================================================== --- trunk/CSP/CSPSim/CHANGES.current 2005-02-21 20:55:56 UTC (rev 1482) +++ trunk/CSP/CSPSim/CHANGES.current 2005-02-21 23:03:53 UTC (rev 1483) @@ -1,10 +1,20 @@ Version 0.4.0 (in progress) =========================== + +2005-02-21: delta + * Minor change to the m2k model to correctly retract the right gear. + + * Minor patch to CSPSim.py to execute cspinput in case an hid file is + missing. cspinput is not an executable on windows and must be called + as an argument of python(.exe). Should be checked on GNU/Linux to be + sure it doesn't break the stuff there. + 2005-02-21: lologramme - * Add Light pylons in the hangars aera + * Add Light pylons in the hangars area. 2005-02-20: onsight * Fix path for hid generation under windows. + * Add the correct F16DJ binding for the core aircraft.map. 2005-02-18: delta |