aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-08-31Add some more dive info - and actually update itGravatar Linus Torvalds
It's still the ugliest application ever, but now it at least gives you some basic dive info. I'd love to add a way to edit the dives to add new data (name, buddies, location etc), but that would also require the ability to save the end result. Maybe some day. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31dive parsing: enforce maxdepth and dive durationGravatar Linus Torvalds
If we see samples from past the dive duration, update the dive duration. Likewise with maxdepth. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31dive profile plot: use saner minimum limitsGravatar Linus Torvalds
The time minimum was in seconds, not minutes, and we really do want to show at least to 90ft to make shallow dives look shallow rather than scaled to some full depth. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31plot a fancier 'filled' depth profileGravatar Linus Torvalds
Now I'm just dicking around with cairo. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Plot dive profile slightly more intelligently.Gravatar Linus Torvalds
This actually creates a bounding box and some scale markers. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Add fake 'info' frame contentsGravatar Linus Torvalds
It should have depth, time, place etc information, but right now it only has a fake depth that doesn't even get updated. Just to show the idea of the table usage. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Use a gtk table instead of hboxGravatar Linus Torvalds
We'll want to add various dive statistics, so... Without them, it all looks pretty much the same, though. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Add 'repaint_dive()' prototype, and fix dependenciesGravatar Linus Torvalds
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Teach the thing to actually track the currently selected diveGravatar Linus Torvalds
.. and repaint the profile when the selection changes. Now, if it just wasn't so ugly, it might even be useful. Except it obviously needs to also show all the other dive information. And allow the user to fill in details. And save the end results. So no, it's not useful. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Re-do the tree selection code with a selection callbackGravatar Linus Torvalds
Learnign gtk by looking at cairo examples? It's one way. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Don't newline-terminate the dive nameGravatar Linus Torvalds
That resulted in ugly lists, and it was wrong to begin with. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Split up divelist scroll window generation into its own fileGravatar Linus Torvalds
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Get rid of now unused 'show_dive()' functionGravatar Linus Torvalds
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Split up profile frame generation into its own file.Gravatar Linus Torvalds
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Draw some kind of profile for the (first) diveGravatar Linus Torvalds
This is all kinds of broken: it doesn't actually follow the selected dive, and the profile isn't scaled properly etc. But it shows something new, and not just text. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-31Fix depth parsingGravatar Linus Torvalds
The "decimal: it's meters, integer: it's feet" logic doesn't work. It's just always meters, because the xml ends up sometimes having whole meters. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Make the dive list scrollable (and put it in a vbox)Gravatar Linus Torvalds
This means you can actually see them all, and walk through them. It doesn't make any of this *useful*, but whatever. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Show the dives as a gtk list/tree widgetGravatar Linus Torvalds
Ok, so I'm not very good at this. I'll need to enclose the dang thing in a scrollable window, and then make that scrollable thing just part of the whole window. But hey, it's pixels on the screen. Pixels that show the names of the dives we've parsed. At least as many as will fit on screen at one time ;) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Generate a default name for a dive, if it doesn't have one alreadyGravatar Linus Torvalds
The name is a string containint date, time, depth and length. So it's useful even with nothing else going on. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Create a gtk windowGravatar Linus Torvalds
It doesn't *do* anything, but some day it will. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Add .gitignore file for current stateGravatar Linus Torvalds
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Start moving some of the non-parsing stuff out of 'parse.c'Gravatar Linus Torvalds
Create a 'main.c' with the main routine and argument "parsing" etc. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Split up dive data structure declarations into 'dive.h'Gravatar Linus Torvalds
The dive parser should eventually be just a part of the program, not the whole thing. So start preparing for that. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Clean up dive reportingGravatar Linus Torvalds
Show date, max depth, and time by default. The stuff that matters and should always exist. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Add some more parsing functionsGravatar Linus Torvalds
.. and fix the 'duration' parsing: it can be either in seconds, or in mm:ss format. Floating point doesn't make any sense. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Don't report dives as they are parsed: sort them at the end and report them thenGravatar Linus Torvalds
This makes it much easier to see the duplicates, but more importantly, we do need to actually save the dives off to do any real work with them. Also, require a verbosity level of 1 (-v) to show all the samples. While (-vv) shows unparsed entries. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Add 'datetime' parsing for libdivecomputer xml filesGravatar Linus Torvalds
I think this gets me dates on all my dives. So now I could start sorting them and removing duplicates. But before I try to remove dups, I guess I should compare the libdivecomputer ones against the suunto ones. Because I bet they have various "interesting" issues like using Bar vs Atm etc. "But XML is portable". Crazy people. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Fix up temperature conversionGravatar Linus Torvalds
Oops. No, the water temperature wasn't really 500 degC. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Start actually reporting the numbers we parsedGravatar Linus Torvalds
.. which also showed that the sampletime thing had gotten a bit too much copy-paste from the temperature parsing ;) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Add 'verbose' flagGravatar Linus Torvalds
Now that we actually parse some of the dives, don't spam stdout with the list of stuff we can't parse by default. Add a 'verbose' flag, which enables that output when set. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Start parsing numeric fieldsGravatar Linus Torvalds
Depth, pressure, and sample times. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Start parsing dive datesGravatar Linus Torvalds
.. only the suunto XML format, though. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Move the "text" nodename hackery out of 'nodename()'Gravatar Linus Torvalds
It's better to do it in the caller. Debug users may well want the full node name. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Fix stupid mis-initialization of current sampleGravatar Linus Torvalds
.. nice compiler warning hidden by the crazy gcc pointer sign warnings that nobody wants to see (yes, we really do want to do 'strlen()' even on unsigned strings, don't complain, crazy bitch compiler). So this also makes our CFLAGS set -Wno-pointer-sign. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Start showing unparsed entriesGravatar Linus Torvalds
(ie all of them) This also shows the type of entry, which makes it clear that I've screwed up the sample matching. Oh well. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30Fill in dummy parse target codeGravatar Linus Torvalds
.. but don't actually parse anything yet. But hey - now it tells you how many samples it (hasn't) parsed. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-29Move the parser closer to being usableGravatar Linus Torvalds
Ok, so we have the dive split and the sample splits, so now we could really just start filling in data. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-29Turn the XML into something almost parseable.Gravatar Linus Torvalds
Of course, now the problem is that the different XML files have different node names, but at least we've turned it into a half-way sane format, and have a nice callback place per value. Soon we could use that to actually fill in useful information. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-28Make the multi-dive files valid XMLGravatar Linus Torvalds
They had multiple "root" entries (all called 'dive'), which makes baby Jesus cry. So just enclose them all in one root entry (called 'dives') that magically turns it all into parseable xml. Yeah, that really helps make the world a better place. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-28Add crazy (bad) xml parser thingGravatar Linus Torvalds
It only works for the Suunto "one xml file per dive" format, not for the libdivecomputer one that just puts many dives in one file. Maybe there is some way for libxml2 to handle concatenated xml files (start again on errors), but I don't know it yet. I need to get stinking drunk before I look at more xml mess. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-28Start archiving the stupid XML filesstartGravatar Linus Torvalds
(and add a reminder of how they came to be) Gaah. XML is *stupid*. It's not easy to parse for humans or for computers, and some of these XML files are just disgusting. But maybe they can be turned into something usable with libxml. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>