]> git.gag.com Git - debian/openrocket/commit
Checkpoint commit of android functionality. Application currently consists of simple...
authorkruland2607 <kruland2607@180e2498-e6e9-4542-8430-84ac67f01cd8>
Tue, 3 Jan 2012 02:20:10 +0000 (02:20 +0000)
committerkruland2607 <kruland2607@180e2498-e6e9-4542-8430-84ac67f01cd8>
Tue, 3 Jan 2012 02:20:10 +0000 (02:20 +0000)
commit70b415f6fb474f5d2f146b57272d498ac6f35ea3
tree211cf51e6b3c18988b7e32454db8504f341db223
parent7449367274631dd38c02930098d5cfc7b644219b
Checkpoint commit of android functionality.  Application currently consists of simple Main activity which does nothing but allows for bootstrapping of debugger.  In future Main activity will go away.  OpenRocketViewer activity which loads an ork file and displays a list of the simulations.  And Simulation activity which is used to plot simulation results.

Also included is a Motor sqlite database which is populated from thrustcurve downloads.  Includes primitive thrustcurve plotting system.  This will soon be wired into the openrocket application to supply motors for simulation execution.

git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@261 180e2498-e6e9-4542-8430-84ac67f01cd8
64 files changed:
android/.classpath
android/AndroidManifest.xml
android/libs/Androidplot-core-0.4.4-release.jar [new file with mode: 0644]
android/res/drawable-hdpi/arrow_down_float.png [new file with mode: 0644]
android/res/drawable-hdpi/arrow_up_float.png [new file with mode: 0644]
android/res/drawable-ldpi/arrow_down_float.png [new file with mode: 0644]
android/res/drawable-ldpi/arrow_up_float.png [new file with mode: 0644]
android/res/drawable-mdpi/arrow_down_float.png [new file with mode: 0644]
android/res/drawable-mdpi/arrow_up_float.png [new file with mode: 0644]
android/res/layout/main.xml [deleted file]
android/res/layout/motor_burn.xml [new file with mode: 0644]
android/res/layout/motor_detail.xml [new file with mode: 0644]
android/res/layout/motor_detail_form.xml [new file with mode: 0644]
android/res/layout/motor_hierarch_list.xml [new file with mode: 0644]
android/res/layout/motor_list_child.xml [new file with mode: 0644]
android/res/layout/motor_list_group.xml [new file with mode: 0644]
android/res/layout/openrocketviewer.xml [new file with mode: 0644]
android/res/layout/simulation_detail.xml [new file with mode: 0644]
android/res/layout/tcqueryform.xml [new file with mode: 0644]
android/res/menu/motor_browser_option_menu.xml [new file with mode: 0644]
android/res/menu/motor_details_option_menu.xml [new file with mode: 0644]
android/res/menu/rocket_viewer_option_menu.xml [new file with mode: 0644]
android/res/menu/simulation_option_menu.xml [new file with mode: 0644]
android/res/values/strings.xml
android/res/xml/preferences.xml [new file with mode: 0644]
src/net/sf/openrocket/android/Application.java [new file with mode: 0644]
src/net/sf/openrocket/android/LogHelper.java [new file with mode: 0644]
src/net/sf/openrocket/android/Main.java [new file with mode: 0644]
src/net/sf/openrocket/android/PreferencesActivity.java [new file with mode: 0644]
src/net/sf/openrocket/android/PreferencesAdapter.java [new file with mode: 0644]
src/net/sf/openrocket/android/db/DbAdapter.java [new file with mode: 0644]
src/net/sf/openrocket/android/db/MotorDao.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/BurnPlotFragment.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/Motor.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/MotorDetails.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/MotorDetailsFragment.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/MotorHierarchicalBrowser.java [new file with mode: 0644]
src/net/sf/openrocket/android/motor/PersistentExpandableListActivity.java [new file with mode: 0644]
src/net/sf/openrocket/android/rocket/OpenRocketLoaderTask.java [new file with mode: 0644]
src/net/sf/openrocket/android/rocket/OpenRocketViewer.java [new file with mode: 0644]
src/net/sf/openrocket/android/simulation/SimulationPlotFragment.java [new file with mode: 0644]
src/net/sf/openrocket/android/simulation/SimulationViewer.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/Base64Decoder.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/DownloadRequest.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/DownloadResponse.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/DownloadResponseParser.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/MotorBurnFile.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/RSEBurnFile.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/RaspBurnFile.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/SearchRequest.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/SearchResponse.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/SearchResponseParser.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/SupportedFileTypes.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/TCMotor.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/TCQueryActivity.java [new file with mode: 0644]
src/net/sf/openrocket/android/thrustcurve/ThrustCurveAPI.java [new file with mode: 0644]
src/net/sf/openrocket/database/MotorDatabase.java [new file with mode: 0644]
src/net/sf/openrocket/database/ThrustCurveMotorSet.java
src/net/sf/openrocket/database/ThrustCurveMotorSetDatabase.java
src/net/sf/openrocket/file/openrocket/OpenRocketLoader.java
src/net/sf/openrocket/motor/Motor.java
src/net/sf/openrocket/motor/MotorDigest.java
src/net/sf/openrocket/motor/ThrustCurveMotor.java
src/net/sf/openrocket/startup/Application.java