Placefile lines looping

This commit is contained in:
Dan Paulat 2023-09-05 23:57:33 -05:00
parent 5c77bff2c6
commit d160eb6f94

View file

@ -26,6 +26,9 @@ static constexpr std::size_t kPointsPerVertex = 9;
static constexpr std::size_t kBufferLength = static constexpr std::size_t kBufferLength =
kNumTriangles * kVerticesPerTriangle * kPointsPerVertex; kNumTriangles * kVerticesPerTriangle * kPointsPerVertex;
// Threshold, start time, end time
static constexpr std::size_t kIntegersPerVertex_ = 3;
static const boost::gil::rgba8_pixel_t kBlack_ {0, 0, 0, 255}; static const boost::gil::rgba8_pixel_t kBlack_ {0, 0, 0, 255};
class PlacefileLines::Impl class PlacefileLines::Impl
@ -50,6 +53,7 @@ public:
uMapMatrixLocation_(GL_INVALID_INDEX), uMapMatrixLocation_(GL_INVALID_INDEX),
uMapScreenCoordLocation_(GL_INVALID_INDEX), uMapScreenCoordLocation_(GL_INVALID_INDEX),
uMapDistanceLocation_(GL_INVALID_INDEX), uMapDistanceLocation_(GL_INVALID_INDEX),
uSelectedTimeLocation_(GL_INVALID_INDEX),
vao_ {GL_INVALID_INDEX}, vao_ {GL_INVALID_INDEX},
vbo_ {GL_INVALID_INDEX}, vbo_ {GL_INVALID_INDEX},
numVertices_ {0} numVertices_ {0}
@ -65,6 +69,8 @@ public:
const units::angle::degrees<double> angle, const units::angle::degrees<double> angle,
const boost::gil::rgba8_pixel_t color, const boost::gil::rgba8_pixel_t color,
const GLint threshold, const GLint threshold,
const GLint startTime,
const GLint endTime,
bool bufferHover = false); bool bufferHover = false);
void void
UpdateBuffers(const std::shared_ptr<const gr::Placefile::LineDrawItem>& di); UpdateBuffers(const std::shared_ptr<const gr::Placefile::LineDrawItem>& di);
@ -83,9 +89,9 @@ public:
std::size_t newNumLines_ {}; std::size_t newNumLines_ {};
std::vector<float> currentLinesBuffer_ {}; std::vector<float> currentLinesBuffer_ {};
std::vector<GLint> currentThresholdBuffer_ {}; std::vector<GLint> currentIntegerBuffer_ {};
std::vector<float> newLinesBuffer_ {}; std::vector<float> newLinesBuffer_ {};
std::vector<GLint> newThresholdBuffer_ {}; std::vector<GLint> newIntegerBuffer_ {};
std::vector<LineHoverEntry> currentHoverLines_ {}; std::vector<LineHoverEntry> currentHoverLines_ {};
std::vector<LineHoverEntry> newHoverLines_ {}; std::vector<LineHoverEntry> newHoverLines_ {};
@ -95,6 +101,7 @@ public:
GLint uMapMatrixLocation_; GLint uMapMatrixLocation_;
GLint uMapScreenCoordLocation_; GLint uMapScreenCoordLocation_;
GLint uMapDistanceLocation_; GLint uMapDistanceLocation_;
GLint uSelectedTimeLocation_;
GLuint vao_; GLuint vao_;
std::array<GLuint, 2> vbo_; std::array<GLuint, 2> vbo_;
@ -137,6 +144,8 @@ void PlacefileLines::Initialize()
p->shaderProgram_->GetUniformLocation("uMapScreenCoord"); p->shaderProgram_->GetUniformLocation("uMapScreenCoord");
p->uMapDistanceLocation_ = p->uMapDistanceLocation_ =
p->shaderProgram_->GetUniformLocation("uMapDistance"); p->shaderProgram_->GetUniformLocation("uMapDistance");
p->uSelectedTimeLocation_ =
p->shaderProgram_->GetUniformLocation("uSelectedTime");
gl.glGenVertexArrays(1, &p->vao_); gl.glGenVertexArrays(1, &p->vao_);
gl.glGenBuffers(2, p->vbo_.data()); gl.glGenBuffers(2, p->vbo_.data());
@ -188,10 +197,18 @@ void PlacefileLines::Initialize()
gl.glVertexAttribIPointer(5, // gl.glVertexAttribIPointer(5, //
1, 1,
GL_INT, GL_INT,
0, kIntegersPerVertex_ * sizeof(GLint),
static_cast<void*>(0)); static_cast<void*>(0));
gl.glEnableVertexAttribArray(5); gl.glEnableVertexAttribArray(5);
// aTimeRange
gl.glVertexAttribIPointer(6, //
2,
GL_INT,
kIntegersPerVertex_ * sizeof(GLint),
reinterpret_cast<void*>(1 * sizeof(GLint)));
gl.glEnableVertexAttribArray(6);
p->dirty_ = true; p->dirty_ = true;
} }
@ -225,6 +242,17 @@ void PlacefileLines::Render(
gl.glUniform1f(p->uMapDistanceLocation_, 0.0f); gl.glUniform1f(p->uMapDistanceLocation_, 0.0f);
} }
// Selected time
std::chrono::system_clock::time_point selectedTime =
(p->selectedTime_ == std::chrono::system_clock::time_point {}) ?
std::chrono::system_clock::now() :
p->selectedTime_;
gl.glUniform1i(
p->uSelectedTimeLocation_,
static_cast<GLint>(std::chrono::duration_cast<std::chrono::minutes>(
selectedTime.time_since_epoch())
.count()));
// Draw icons // Draw icons
gl.glDrawArrays(GL_TRIANGLES, 0, p->numVertices_); gl.glDrawArrays(GL_TRIANGLES, 0, p->numVertices_);
} }
@ -240,7 +268,7 @@ void PlacefileLines::Deinitialize()
std::unique_lock lock {p->lineMutex_}; std::unique_lock lock {p->lineMutex_};
p->currentLinesBuffer_.clear(); p->currentLinesBuffer_.clear();
p->currentThresholdBuffer_.clear(); p->currentIntegerBuffer_.clear();
p->currentHoverLines_.clear(); p->currentHoverLines_.clear();
} }
@ -248,7 +276,7 @@ void PlacefileLines::StartLines()
{ {
// Clear the new buffers // Clear the new buffers
p->newLinesBuffer_.clear(); p->newLinesBuffer_.clear();
p->newThresholdBuffer_.clear(); p->newIntegerBuffer_.clear();
p->newHoverLines_.clear(); p->newHoverLines_.clear();
p->newNumLines_ = 0u; p->newNumLines_ = 0u;
@ -270,12 +298,12 @@ void PlacefileLines::FinishLines()
// Swap buffers // Swap buffers
p->currentLinesBuffer_.swap(p->newLinesBuffer_); p->currentLinesBuffer_.swap(p->newLinesBuffer_);
p->currentThresholdBuffer_.swap(p->newThresholdBuffer_); p->currentIntegerBuffer_.swap(p->newIntegerBuffer_);
p->currentHoverLines_.swap(p->newHoverLines_); p->currentHoverLines_.swap(p->newHoverLines_);
// Clear the new buffers // Clear the new buffers
p->newLinesBuffer_.clear(); p->newLinesBuffer_.clear();
p->newThresholdBuffer_.clear(); p->newIntegerBuffer_.clear();
p->newHoverLines_.clear(); p->newHoverLines_.clear();
// Update the number of lines // Update the number of lines
@ -294,6 +322,16 @@ void PlacefileLines::Impl::UpdateBuffers(
units::length::nautical_miles<double> threshold = di->threshold_; units::length::nautical_miles<double> threshold = di->threshold_;
GLint thresholdValue = static_cast<GLint>(std::round(threshold.value())); GLint thresholdValue = static_cast<GLint>(std::round(threshold.value()));
// Start and end time
GLint startTime =
static_cast<GLint>(std::chrono::duration_cast<std::chrono::minutes>(
di->startTime_.time_since_epoch())
.count());
GLint endTime =
static_cast<GLint>(std::chrono::duration_cast<std::chrono::minutes>(
di->endTime_.time_since_epoch())
.count());
std::vector<units::angle::degrees<double>> angles {}; std::vector<units::angle::degrees<double>> angles {};
angles.reserve(di->elements_.size() - 1); angles.reserve(di->elements_.size() - 1);
@ -319,6 +357,8 @@ void PlacefileLines::Impl::UpdateBuffers(
angle, angle,
kBlack_, kBlack_,
thresholdValue, thresholdValue,
startTime,
endTime,
true); true);
} }
@ -331,7 +371,9 @@ void PlacefileLines::Impl::UpdateBuffers(
di->width_, di->width_,
angles[i], angles[i],
di->color_, di->color_,
thresholdValue); thresholdValue,
startTime,
endTime);
} }
} }
@ -343,6 +385,8 @@ void PlacefileLines::Impl::BufferLine(
const units::angle::degrees<double> angle, const units::angle::degrees<double> angle,
const boost::gil::rgba8_pixel_t color, const boost::gil::rgba8_pixel_t color,
const GLint threshold, const GLint threshold,
const GLint startTime,
const GLint endTime,
bool bufferHover) bool bufferHover)
{ {
// Latitude and longitude coordinates in degrees // Latitude and longitude coordinates in degrees
@ -384,9 +428,25 @@ void PlacefileLines::Impl::BufferLine(
lat2, lon2, rx, ty, mc0, mc1, mc2, mc3, a, // TR lat2, lon2, rx, ty, mc0, mc1, mc2, mc3, a, // TR
lat2, lon2, lx, ty, mc0, mc1, mc2, mc3, a // TL lat2, lon2, lx, ty, mc0, mc1, mc2, mc3, a // TL
}); });
newThresholdBuffer_.insert( newIntegerBuffer_.insert(newIntegerBuffer_.end(),
newThresholdBuffer_.end(), {threshold,
{threshold, threshold, threshold, threshold, threshold, threshold}); startTime,
endTime,
threshold,
startTime,
endTime,
threshold,
startTime,
endTime,
threshold,
startTime,
endTime,
threshold,
startTime,
endTime,
threshold,
startTime,
endTime});
if (bufferHover && !di->hoverText_.empty()) if (bufferHover && !di->hoverText_.empty())
{ {
@ -427,8 +487,8 @@ void PlacefileLines::Impl::Update()
// Buffer threshold data // Buffer threshold data
gl.glBindBuffer(GL_ARRAY_BUFFER, vbo_[1]); gl.glBindBuffer(GL_ARRAY_BUFFER, vbo_[1]);
gl.glBufferData(GL_ARRAY_BUFFER, gl.glBufferData(GL_ARRAY_BUFFER,
sizeof(GLint) * currentThresholdBuffer_.size(), sizeof(GLint) * currentIntegerBuffer_.size(),
currentThresholdBuffer_.data(), currentIntegerBuffer_.data(),
GL_DYNAMIC_DRAW); GL_DYNAMIC_DRAW);
} }
@ -458,24 +518,41 @@ bool PlacefileLines::RunMousePicking(
(p->thresholded_) ? util::maplibre::GetMapDistance(params) : (p->thresholded_) ? util::maplibre::GetMapDistance(params) :
units::length::meters<double> {0.0}; units::length::meters<double> {0.0};
// If no time has been selected, use the current time
std::chrono::system_clock::time_point selectedTime =
(p->selectedTime_ == std::chrono::system_clock::time_point {}) ?
std::chrono::system_clock::now() :
p->selectedTime_;
// For each pickable line // For each pickable line
auto it = std::find_if( auto it = std::find_if(
std::execution::par_unseq, std::execution::par_unseq,
p->currentHoverLines_.crbegin(), p->currentHoverLines_.crbegin(),
p->currentHoverLines_.crend(), p->currentHoverLines_.crend(),
[&mapDistance, &mapMatrix, &mousePos](const auto& line) [&mapDistance, &selectedTime, &mapMatrix, &mousePos](const auto& line)
{ {
if ( if ((
// Placefile is thresholded // Placefile is thresholded
mapDistance > units::length::meters<double> {0.0} && mapDistance > units::length::meters<double> {0.0} &&
// Placefile threshold is < 999 nmi // Placefile threshold is < 999 nmi
static_cast<int>(std::round( static_cast<int>(std::round(
units::length::nautical_miles<double> {line.di_->threshold_} units::length::nautical_miles<double> {line.di_->threshold_}
.value())) < 999 && .value())) < 999 &&
// Map distance is beyond the threshold // Map distance is beyond the threshold
line.di_->threshold_ < mapDistance) line.di_->threshold_ < mapDistance) ||
(
// Line has a start time
line.di_->startTime_ !=
std::chrono::system_clock::time_point {} &&
// The time range has not yet started
(selectedTime < line.di_->startTime_ ||
// The time range has ended
line.di_->endTime_ <= selectedTime)))
{ {
// Line is not pickable // Line is not pickable
return false; return false;