#pragma once #include #include #include namespace mbgl { namespace style { /* * Special-case implementation of (a subset of) the PropertyValue interface * used for building the HeatmapColor paint property traits class. */ class ColorRampPropertyValue { private: std::shared_ptr value; friend bool operator==(const ColorRampPropertyValue& lhs, const ColorRampPropertyValue& rhs) { return (lhs.isUndefined() && rhs.isUndefined()) || (lhs.value && rhs.value && *(lhs.value) == *(rhs.value)); } friend bool operator!=(const ColorRampPropertyValue& lhs, const ColorRampPropertyValue& rhs) { return !(lhs == rhs); } public: ColorRampPropertyValue() : value(nullptr) {} ColorRampPropertyValue(std::shared_ptr value_) : value(std::move(value_)) {} bool isUndefined() const { return value.get() == nullptr; } // noop, needed for batch evaluation of paint property values to compile template Color evaluate(const Evaluator&, TimePoint = {}) const { return {}; } Color evaluate(double rampEvaluationParameter) const { const auto result = value->evaluate(expression::EvaluationContext({}, nullptr, {rampEvaluationParameter})); return *expression::fromExpressionValue(*result); } bool isDataDriven() const { return false; } bool hasDataDrivenPropertyDifference(const ColorRampPropertyValue&) const { return false; } const expression::Expression& getExpression() const { return *value; } }; } // namespace style } // namespace mbgl