aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-11-27Fix mingw-make.sh to find correct xslt-configGravatar Dirk Hohndel
I hadn't noticed that xslt was available as cross built library as well. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-25Merge branch 'windows-fixes' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'windows-fixes' of git://git.hohndel.org/subsurface: Add more typecasts for Windows` Fix the Windows preferences support Update the Windows installer creation script
2011-11-25Remove stale notebook drag-and-drop supportGravatar Linus Torvalds
It doesn't make sense with the new three-pane layout, and I don't think we're reviving it. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-25Add more typecasts for Windows`Gravatar Dirk Hohndel
This is based on an older patch by Lubomir I. Ivanov <neolit123@gmail.com> which no longer applies due to the refactoring of the registry setting code. It takes care of all of the casts between actual C types and the Windows specific types that the Windows API functions expect. It also adds some comments to the overloading of "value" in our subsurface_set_conf function. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-25Fix the Windows preferences supportGravatar Dirk Hohndel
Now that I can test Windows binaries again, the bugs were rather easy to spot. Because of the different flow of the opening, writing and closing of the registry key my first attempt got things wrong - we simply always create the key with all access rights; if it exists Windows will just open it for us. The second bug was a cut'n'paste error. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-25Update the Windows installer creation scriptGravatar Dirk Hohndel
This now works with a straight out of the box MinGW install on OpenSUSE. A simple shell script that shows how to invoke the cross build is included. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-24Improve cross compile support and fix windows.cGravatar Dirk Hohndel
This should make the Makefile much more robust when cross compiling. The windows.c code is now compile tested but not functionally tested. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-24Merge branch 'mac-fixes' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'mac-fixes' of git://git.hohndel.org/subsurface: Split reading/writing preferences into OS specific files
2011-11-24Split reading/writing preferences into OS specific filesGravatar Dirk Hohndel
This adds tested code for Linux and Mac OS, implementing the api that Linus suggested. The Windows code was moved into its own file, but hasn't even been compile tested, yet. In order to have just one interface to set or get a preference value we encode TRUE as (void *) 1 and FALSE as NULL. This works consistently on all platforms and regardless of whether we have 32 or 64 bit. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-22Merge branch 'mac-fixes' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'mac-fixes' of git://git.hohndel.org/subsurface: Preference handling on Mac
2011-11-22Preference handling on MacGravatar Dirk Hohndel
This cleans up the platform conditional handling and gets rid of gconf on the Mac. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-21Exclude surface intervals from sac rate calculationGravatar Dirk Hohndel
We assume every sample with a depth of less than 10cm to be on the surface. This does not impact our interpolated pressures (one could assume that the diver is not breathing from the regulator when on the surface - but without air integration that's just an assumption). It also doesn't change our tank pressure coloring by sac rate as that always uses the momentary sac rate. Technically speaking this might impact the actual colors printed (as those are relative to the total sac on the dive which may go up due to this change). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-21Don't colorize the pressure plot when printingGravatar Dirk Hohndel
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-21Add debugging function to dump tank pressure tracking dataGravatar Dirk Hohndel
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-21Remove suunto parsing hacks from parse-xml.cGravatar Linus Torvalds
We can just depend on Miika's xslt transform instead. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-21XSLT to import SDM dive logGravatar Miika Turkia
This is tested with Linus' sample data, all basic functionality seems to be working properly. Gas changes are implemented but not tested as there was no samples of those. Multiple cylinders are missing because there was no samples available. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-21Support for importing multiple XSLT formatsGravatar Miika Turkia
Have information of multiple XSLT files on an array for importing "alien" formatted XML dive log files. Adding support for new XSLT requires updating the array and adding the XSLT file (provided the format can be identified by root element of the XML). Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-20Merge branch 'multi-pane'Gravatar Linus Torvalds
* multi-pane: Experimental hard-coded three-pane layout Ok, so it's not perfect, but I've been using a version of this for the last week or so by now, and every time I go back to the old layout I just cringe. So the three-pane window approach requires much more display area, and probably wouldn't work wonderfully on low-resolution devices (ie 720x480 or even 1024x600). So for anybody doing a cellphone port, you may need to play around with the interface. But this should be usable even on a netbook, although not as good as on a device with more pixels. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-20Do proper rounding in interpolated pressure calculationsGravatar Linus Torvalds
We do all the pressures in mbar, which has plenty of precision for interpolated pressures - even when we then do our discrete integration over many samples. However, when we calculate those interpolated pressure points, we should make sure that we round the result correctly, otherwise the consistent rounding errors (from truncating the FP value into our integer mbar values) will result in a final pressure that is noticeably off in ugly ways (ie "end pressure set by hand to 750 mbar, but shown as 748"). Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-20Revert "Correctly plot the tank end pressure if it was set manually"Gravatar Linus Torvalds
This reverts commit abdee5b1b8a97c641bca9bc2ebac9555c3e2ea54. There's no point in doing random hacks. Instead, do the intermediate pressure calculations with proper rounding instead of always truncating to mbar. With the math done correctly we have enough precision that the end result of the pressure interpolation doesn't have the kind of errors that caused Dirk to try to fix things up later. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Merge branch 'sacplot' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'sacplot' of git://git.hohndel.org/subsurface: Fix error when gaschange event is one second before next sample
2011-11-19Fix error when gaschange event is one second before next sampleGravatar Dirk Hohndel
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Fix the Makefile '-c' location, add XML2CFLAGSGravatar Terrance Stanfield
I was getting the following error: dive.h:8:25: fatal error: libxml/tree.h: No such file or directory compilation terminated. So I updated the Makefile to fix that error and follow the standard in the file. Signed-off-by: Terrance Stanfield <t@hollowcranium.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Merge branch 'sacplot' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'sacplot' of git://git.hohndel.org/subsurface: Correctly plot the tank end pressure if it was set manually
2011-11-19Experimental hard-coded three-pane layoutGravatar Linus Torvalds
I'm not happy with it, but it looks good and works better than the alternatives I've looked at so far. So why not happy? It's not configurable, and gtk really doesn't do a great job with the case of notebook widgets that are shrunk to be smaller than the contents (the cut-off gets ugly, and is outside the notebook page!) But committing as a way to keep track of this, and let Dirk use it. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Correctly plot the tank end pressure if it was set manuallyGravatar Dirk Hohndel
While printing the last pressure in the calculated sequence may seem more logical, given that the discrete series will create some amount of error this simply looks wrong. Instead we pick the end pressure that was manually set. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Merge branch 'sacplot' of git://git.hohndel.org/subsurfaceGravatar Linus Torvalds
* 'sacplot' of git://git.hohndel.org/subsurface: Make pressure plot shading by sac rate consistent Improve tank pressure sac coloring Be more consistent in our handling of rgb value tables Remove redundant linear sample tank pressure data
2011-11-19Make pressure plot shading by sac rate consistentGravatar Dirk Hohndel
Some parts of the existing code used the depth at the time of the sample to calculate the sac rate - it makes much more sense to use the average depth. But that requires us to loop over the entries and average the individual sac rates per segment instead of just using the beginning and end depth of the multi-segment interval we use for smoothing purposes. This may seem like a subtle detail, but it does in fact matter when we plot the synthetic tank pressure values that we create when we have no tank pressure data in the samples. Another detail we change here is to not artificially start with a forward looking segment of the full SAC_WINDOW but instead just start with the first two data points and then simply let the time window grow until it hits SAC_WINDOW - at which point it becomes a sliding window. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Improve tank pressure sac coloringGravatar Dirk Hohndel
This changes the algorithm that picks the sac color to consider +/- 1 l/min to be the same color (before the color changed every time you crossed above or below the average which looked silly with our synthetic "constant sac" values as those are discrete and oscilate around the average. This also changes the order in which things are drawn so so that the pressure plot goes over the depth profile plot (so the red shading of the dive no longer changes the color of the tank pressure plot). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Be more consistent in our handling of rgb value tablesGravatar Dirk Hohndel
Use rgb_t for the sac colors, create a new set_source_rgb_struct function and use that for the velocity values (in the depth plot) as well. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Remove redundant linear sample tank pressure dataGravatar Dirk Hohndel
I've seen at least DivingLog do this. If you manually enter beginning and end pressure for a tank it will either linearize the samples in between or offer to simulate a dive (with constant SAC rate). At least the first case is reasonably easy to detect. We throw out those samples and ensure that we still have valid beginning and end pressure for that dive. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-19Add the cylinder list to the dive info edit dialogGravatar Linus Torvalds
This way, when you have a new dive that you just imported from your dive computer, you can just double-click on the dive and fill out all the relevant information: location, notes, buddies and cylinder info. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Add dive number and date to the dive info edit dialogGravatar Linus Torvalds
It's pretty basic information, and might be hidden behind the dialog especially on a small screen. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Add an 'edit' menu item to the dive info text fieldsGravatar Linus Torvalds
It just pops up the dive info edit box. This way you can be in the dive info tab, and not have to go to the dive list just to double-click on the dive. This thing still needs some polish, but it's now usable. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-19Make double-clicking on the dive list bring up the dive editorGravatar Linus Torvalds
Now that the dive info window is read-only, we need to edit the dives some other way. We bring up a dive info edit dialog when you double-click on the dive list entry for that dive. I do want to have an "edit" button or keyboard shortcut or something too, though. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-18Make all the normal widgets uneditable and non-focusingGravatar Linus Torvalds
We always keep the focus on the dive list, so that the random gtk focus handling doesn't suddenly randomly make us edit the combo boxes when the cursor up/down keys start changing them instead of the dive list. This means that dive location, notes and buddy/divemaster aren't editable at all any more, but I'll fix that by making a separate dive edit popup window. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-18Merge branch 'sacplot' of git://github.com/dirkhh/subsurfaceGravatar Linus Torvalds
* 'sacplot' of git://github.com/dirkhh/subsurface: Color tank pressure plot based on relative sac
2011-11-18Color tank pressure plot based on relative sacGravatar Dirk Hohndel
Linus suggested that instead of using absolute SAC values to base the color on (which forced us to pre-define which SAC rates are green and which are red) we should color the tank pressure plot relative to the avg SAC rate of that dive - which I think makes the coloring much more useful to spot when on your dive you were doing well and when you were not. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-17Merge branch 'sacplot' of git://github.com/dirkhh/subsurfaceGravatar Linus Torvalds
* 'sacplot' of git://github.com/dirkhh/subsurface: Color pressure plot according to current SAC rate Fix minor coding standard issues introduced by my last commit
2011-11-17Color pressure plot according to current SAC rateGravatar Dirk Hohndel
Similar to color indicating vertical speed in the profile plot we now use color in the tank pressure plot to indicate current SAC rate. We use a 45 sec sliding window to make sure we cover at least two breaths for each current SAC sample to avoid artificial oscillation based on breathing rhythm for corputers with high sample resolution. Not sure about the color coding that I'm using right now - it's green-ish for SAC rates under 15l/min ~= .55cuft/min and turns yellow and red as you go higher. That seems to work well for me, but for other divers this may be way off (or at least not as useful). Maybe this should be configurable? This is a lot more diver specific than the vertical velocity where there are clear recommendations based on safety considerations on what is good and bad. As a side effect, this removes the color coding that showed you whether you were looking at pressure data from samples (green) vs. interpolated pressure data (yellow). Not sure if people really want to see that. We might be able to indicate this differently (I am thinking different line width or transparency or something along those line) Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-17Remove redundant duplicate pressure samplesGravatar Linus Torvalds
At least the Suunto pressure transmitter seems to be pretty "quantisized", and it will send identical samples for a while until the pressure changes enough. Then subsurface gives this silly flat line with a sudden jump downwards, which *could* be you suddenly taking a deep breath after holding it for a while, but almost certainly it's a sensor issue. So just remove successive identical pressure readings. They aren't interesting, and subsurface will actually do a good job of interpolating it according to SAC rate instead. And they just make the XML look worse. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-16Show dives "latest-first" by defaultGravatar Linus Torvalds
You can still order them by date by just setting the sort order on the date column, but normally you'd be more interested in the most recent dives. I tried to just scroll down to the last ones automatically instead, but gtk makes that *really* hard to do. If you do it in the natural place for it, the scroll bar wll show up later and then cover up the last entry anyway. So you'd have to do some crazy expose event thing or something. Which may be the right thing to do eventually anyway, but not worth the pain right now. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-16Show more of the dive location in the dive listGravatar Linus Torvalds
Randomly picked up to 60 characters. But maybe we should just get rid of the limit entirely. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-13Fix minor coding standard issues introduced by my last commitGravatar Dirk Hohndel
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-13Merge branch 'forlinus' of git://github.com/dirkhh/subsurfaceGravatar Linus Torvalds
* 'forlinus' of git://github.com/dirkhh/subsurface: Make sure SAC and OTU get recalculated after cylinder info was changed
2011-11-13Make sure SAC and OTU get recalculated after cylinder info was changedGravatar Dirk Hohndel
Also fixed minor coding style issues (prevent useless code from being executed). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2011-11-13Fix the stupid gtk combo box text reset issue for realGravatar Linus Torvalds
Lubomir's solution to fill them with a newline doesn't work. Well, it may work on some versions of gtk, but on mine it just results in an ugly box for the control character '000a' that tries to show the newline. So this is a third approach: if we reset the text to empty, first set it to space (to clear it), and then set it to empty. That seems to work on at least one version of gtk, and doesn't have the problem with the space *remaining* when you cut-and-paste something into the combo box. Let's see if it breaks anything else, but at worst it should be no worse than the old "set it to space" approach - iow the combo box might remember the space, but at least not some random data from the previous dive that it happened to show. Lovely gtk bugs. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-13gtk_combo_box_entries and empty textGravatar Lubomir I. Ivanov
Passing -1 to gtk_combo_box_set_active, seems not to work as the gtk documentation explains; there might be a bug in the library or some special case that is not explained. could be related to: http://mail.gnome.org/archives/gtk-devel-list/2004-March/msg00170.html passing \n seems to "trick" the cell renderer to clear the entry completely. This is a temporary solution. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-10Save cylinder O2/He content after the cylinder type descriptionGravatar Linus Torvalds
This changes the save format xml to be a bit more readable: instead of putting the gasmix first, put the cylinder type (size, workpressure and description) first, then gasmix, then pressure details. It makes no difference for machine parsing, but I think it's a lot more logical for humans that actually look at the xml file. And we really do want to make the xml file readable by humans. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-11-10Make the sample-vs-cylinder pressure check more liberalGravatar Linus Torvalds
This makes it consider them to be identical if they are within half a bar of each other. If you edit the pressures by hand and set them to the same bar pressure as the samples, they may not be identical to the last milli-bar, but clearly the manually entered cylinder pressure isn't significantly different from the sample data, so consider it redundant. We do want manual overrides of cylinder pressures to take precedence over sample data (as Dirk so eloquently puts it, some dive computers really don't have very reliable sample data), but at the same time the sample data is the one we are expecting to be fairly accurate. The starting and ending pressure overrides are for when there is no sample data, or when the sample data is totally wrong for some reason. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>