mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Dive media: add media to closest dive
Currently, when selecting "Load media files even if time does not match the dive time", the media are added to *all* selected dives. Instead add it to the closest dive. This seems like the less surprising behavior. Of course now if the user really wants to add a media file to multiple dives, they will have to do it manually. To avoid a messy interface, this is solved by moving the iterate- over-selected-dives loop to the core. Thus, a helper-function can be made local to its translation unit. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
09a9fa1ae5
commit
3cdc2661d2
4 changed files with 57 additions and 24 deletions
61
core/dive.c
61
core/dive.c
|
|
@ -4004,20 +4004,51 @@ static bool new_picture_for_dive(struct dive *d, const char *filename)
|
|||
return true;
|
||||
}
|
||||
|
||||
/* Return distance of timestamp to time of dive. Result is always positive, 0 means during dive. */
|
||||
static timestamp_t time_from_dive(const struct dive *d, timestamp_t timestamp)
|
||||
{
|
||||
timestamp_t end_time = dive_endtime(d);
|
||||
if (timestamp < d->when)
|
||||
return d->when - timestamp;
|
||||
else if (timestamp > end_time)
|
||||
return timestamp - end_time;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
// only add pictures that have timestamps between 30 minutes before the dive and
|
||||
// 30 minutes after the dive ends
|
||||
#define D30MIN (30 * 60)
|
||||
bool dive_check_picture_time(const struct dive *d, int shift_time, timestamp_t timestamp)
|
||||
static bool dive_check_picture_time(const struct dive *d, timestamp_t timestamp)
|
||||
{
|
||||
offset_t offset;
|
||||
if (timestamp) {
|
||||
offset.seconds = timestamp - d->when + shift_time;
|
||||
if (offset.seconds > -D30MIN && offset.seconds < dive_totaltime(d) + D30MIN) {
|
||||
// this picture belongs to this dive
|
||||
return true;
|
||||
return time_from_dive(d, timestamp) < D30MIN;
|
||||
}
|
||||
|
||||
/* Return dive closest selected dive to given timestamp or NULL if no dives are selected. */
|
||||
static struct dive *nearest_selected_dive(timestamp_t timestamp)
|
||||
{
|
||||
struct dive *d, *res = NULL;
|
||||
int i;
|
||||
timestamp_t offset, min = 0;
|
||||
|
||||
for_each_dive(i, d) {
|
||||
if (!d->selected)
|
||||
continue;
|
||||
offset = time_from_dive(d, timestamp);
|
||||
if (!res || offset < min) {
|
||||
res = d;
|
||||
min = offset;
|
||||
}
|
||||
|
||||
/* We suppose that dives are sorted chronologically. Thus
|
||||
* if the offset starts to increase, we can end. This ignores
|
||||
* pathological cases such as overlapping dives. In such a
|
||||
* case the user will have to add pictures manually.
|
||||
*/
|
||||
if (offset == 0 || offset > min)
|
||||
break;
|
||||
}
|
||||
return false;
|
||||
return res;
|
||||
}
|
||||
|
||||
bool picture_check_valid_time(timestamp_t timestamp, int shift_time)
|
||||
|
|
@ -4026,18 +4057,26 @@ bool picture_check_valid_time(timestamp_t timestamp, int shift_time)
|
|||
struct dive *dive;
|
||||
|
||||
for_each_dive (i, dive)
|
||||
if (dive->selected && dive_check_picture_time(dive, shift_time, timestamp))
|
||||
if (dive->selected && dive_check_picture_time(dive, timestamp + shift_time))
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
void dive_create_picture(struct dive *dive, const char *filename, int shift_time, bool match_all)
|
||||
void create_picture(const char *filename, int shift_time, bool match_all)
|
||||
{
|
||||
struct metadata metadata;
|
||||
struct dive *dive;
|
||||
timestamp_t timestamp;
|
||||
|
||||
get_metadata(filename, &metadata);
|
||||
timestamp = metadata.timestamp + shift_time;
|
||||
dive = nearest_selected_dive(timestamp);
|
||||
|
||||
if (!dive)
|
||||
return;
|
||||
if (!new_picture_for_dive(dive, filename))
|
||||
return;
|
||||
if (!match_all && !dive_check_picture_time(dive, shift_time, metadata.timestamp))
|
||||
if (!match_all && !dive_check_picture_time(dive, timestamp))
|
||||
return;
|
||||
|
||||
struct picture *picture = alloc_picture();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue