diff options
author | SanJacobs | 2022-07-13 00:57:58 +0200 |
---|---|---|
committer | SanJacobs | 2022-07-13 00:57:58 +0200 |
commit | 2f97c1e2cac065443734e94ae1346da2f1d648d1 (patch) | |
tree | b648dc1468daf218d83dab4a1551c0cf8b41cca0 /src | |
parent | 82d45f2a532008d8d7c05ca57fbae6bd48e35352 (diff) | |
download | satscalc-2f97c1e2cac065443734e94ae1346da2f1d648d1.tar.gz satscalc-2f97c1e2cac065443734e94ae1346da2f1d648d1.tar.bz2 satscalc-2f97c1e2cac065443734e94ae1346da2f1d648d1.zip |
Squashed a couple bugs
Fixed:
- Splitpoints in workday constructor was generating backwards timeblocks,
- Planned wrap could cut up main chunk of workday.
Diffstat (limited to 'src')
-rwxr-xr-x | src/time.cpp | 9 | ||||
-rwxr-xr-x | src/time.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/time.cpp b/src/time.cpp index 9ecdc69..45d5c48 100755 --- a/src/time.cpp +++ b/src/time.cpp @@ -147,6 +147,15 @@ workday::workday(const moment& previous_wrap, (moment){0, 23, call.day, call.month, call.year}+(delta){0, 7, 0}, // 6, next morning }; + // Eliminate planned wrap, if it occurs within normal 8-hour period. + // This is to make sure the first period of time becomes a pure 8 hours, + // which makes detecting the main section of the workday easier. + if(splitpoints[5] < splitpoints[3]){ + splitpoints[5] = splitpoints[3]; + } + + std::sort(splitpoints, splitpoints + 10); + int j = 0; for(int i = 0; i<=10; i++) { const moment* each_moment = &splitpoints[i]; @@ -5,6 +5,7 @@ #include <iomanip> #include <string.h> #include <vector> +#include <bits/stdc++.h> enum weekday{ monday, |