Skip to content

Commit

Permalink
Merge pull request #317 from AdenKoperczak/inverted_threshold
Browse files Browse the repository at this point in the history
Change negative threshold values to act as inverted threshold
  • Loading branch information
dpaulat authored Dec 10, 2024
2 parents dcea341 + 10aabce commit 37af071
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion scwx-qt/gl/threshold.geom
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ smooth out vec4 color;
void main()
{
if (gsIn[0].displayed != 0 &&
(gsIn[0].threshold <= 0 || // If Threshold: 0 was specified, no threshold
(gsIn[0].threshold == 0 || // If Threshold: 0 was specified, no threshold
uMapDistance == 0 || // If uMapDistance is zero, threshold is disabled
(gsIn[0].threshold < 0 && -(gsIn[0].threshold) <= uMapDistance) || // If Threshold is negative and below current map distance
gsIn[0].threshold >= uMapDistance || // If Threshold is above current map distance
gsIn[0].threshold >= 999) && // If Threshold: 999 was specified (or greater), no threshold
(gsIn[0].timeRange[0] == 0 || // If there is no start time specified
Expand Down
6 changes: 5 additions & 1 deletion scwx-qt/source/scwx/qt/gl/draw/placefile_text.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ void PlacefileText::Impl::RenderTextDrawItem(
std::chrono::system_clock::now() :
selectedTime_;

if ((!thresholded_ || mapDistance_ <= di->threshold_) &&
const bool thresholdMet =
!thresholded_ || mapDistance_ <= di->threshold_ ||
(di->threshold_.value() < 0.0 && mapDistance_ >= -(di->threshold_));

if (thresholdMet &&
(di->startTime_ == std::chrono::system_clock::time_point {} ||
(di->startTime_ <= selectedTime && selectedTime < di->endTime_)))
{
Expand Down

0 comments on commit 37af071

Please sign in to comment.