ui_chart.cpp 29.0 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "components/ui_chart.h"
N
niulihua 已提交
17
#include "engines/gfx/gfx_engine_manager.h"
M
mamingshuai 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include "securec.h"

namespace OHOS {
UIChart::~UIChart()
{
    if (mixData_ != nullptr) {
        UIFree(mixData_);
        mixData_ = nullptr;
    }
    ClearDataSerial();
    Remove(&xAxis_);
    Remove(&yAxis_);
}

void UIChart::SetHeight(int16_t height)
{
    if (GetHeight() == height) {
        return;
    }

    if (height > 0) {
        needRefresh_ = true;
    }

42
    UIView::SetHeight(height);
M
mamingshuai 已提交
43 44 45 46 47 48 49 50
    xAxis_.SetHeight(height);
    xAxis_.UpdateAxis();
    yAxis_.SetHeight(height);
    yAxis_.UpdateAxis();
}

void UIChart::SetWidth(int16_t width)
{
51
    UIView::SetWidth(width);
M
mamingshuai 已提交
52 53 54 55 56 57
    xAxis_.SetWidth(width);
    yAxis_.SetWidth(width);
    xAxis_.UpdateAxis();
    yAxis_.UpdateAxis();
}

N
niulihua 已提交
58
void UIChart::OnDraw(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea)
M
mamingshuai 已提交
59
{
N
niulihua 已提交
60
    UIViewGroup::OnDraw(gfxDstBuffer, invalidatedArea);
61
    DrawDataSerials(gfxDstBuffer, invalidatedArea);
M
mamingshuai 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
}

bool UIChart::AddDataSerial(UIChartDataSerial* dataSerial)
{
    if (dataSerial == nullptr) {
        return false;
    }

    ListNode<UIChartDataSerial*>* serialNode = list_.Head();
    while (serialNode != list_.End()) {
        if (serialNode->data_ == dataSerial) {
            return false;
        }
        serialNode = serialNode->next_;
    }
    list_.PushBack(dataSerial);
    dataSerial->BindToChart(this);
    return true;
}

bool UIChart::DeleteDataSerial(UIChartDataSerial* dataSerial)
{
    if ((dataSerial == nullptr) || list_.IsEmpty()) {
        return false;
    }

    bool findSerial = false;
    ListNode<UIChartDataSerial*>* serialNode = list_.Head();
    while (serialNode != list_.End()) {
        if (serialNode->data_ == dataSerial) {
            dataSerial->BindToChart(nullptr);
            list_.Remove(serialNode);
            findSerial = true;
            break;
        }
        serialNode = serialNode->next_;
    }

    return findSerial;
}

void UIChart::ClearDataSerial()
{
    if (list_.IsEmpty()) {
        return;
    }

    ListNode<UIChartDataSerial*>* serialNode = list_.Head();
    while (serialNode != list_.End()) {
        serialNode->data_->BindToChart(nullptr);
        ListNode<UIChartDataSerial*>* tempNode = serialNode;
        serialNode = serialNode->next_;
        list_.Remove(tempNode);
    }
    list_.Clear();
}

UIChartDataSerial::UIChartDataSerial()
    : maxCount_(0),
      pointArray_(nullptr),
      serialColor_(Color::White()),
      fillColor_(Color::White()),
      dataCount_(0),
      peakPointIndex_(0),
      peakData_(0),
      valleyData_(0),
      valleyPointIndex_(0),
      lastPointIndex_(0),
      latestIndex_(0),
      hideIndex_(0),
      hideCount_(0),
      smooth_(false),
      enableGradient_(false),
      enableHeadPoint_(false),
      enableTopPoint_(false),
      enableBottomPoint_(false),
      chart_(nullptr),
      invalidateRect_(0, 0, 0, 0)
{
    PointStyle style;
    style.radius = DEFAULT_POINT_RADIUS;
    style.strokeWidth = 1;
    style.fillColor = Color::White();
    style.strokeColor = Color::White();
    topPointStyle_ = style;
    bottomPointStyle_ = style;
    headPointStyle_ = style;
}

bool UIChartDataSerial::SetMaxDataCount(uint16_t maxCount)
{
    if (maxCount > MAX_POINTS_COUNT) {
        maxCount = MAX_POINTS_COUNT;
    }

    if (maxCount == maxCount_) {
        return true;
    }

    if (pointArray_ != nullptr) {
        UIFree(pointArray_);
        pointArray_ = nullptr;
    }

    maxCount_ = maxCount;
    if (maxCount_ == 0) {
        return true;
    }

    pointArray_ = static_cast<Point*>(UIMalloc(sizeof(Point) * maxCount_));
    if (pointArray_ == nullptr) {
        maxCount_ = 0;
        return false;
    }
    return true;
}

bool UIChartDataSerial::ModifyPoint(uint16_t index, const Point& point)
{
    if ((index >= maxCount_) || (pointArray_ == nullptr)) {
        return false;
    }

    pointArray_[index].x = point.x;
    pointArray_[index].y = point.y;
    if (point.y > peakData_) {
        if (enableTopPoint_) {
            RefreshInvalidateRect(peakPointIndex_, topPointStyle_);
        }
        peakPointIndex_ = index;
        peakData_ = point.y;
    } else if (point.y < valleyData_) {
        if (enableBottomPoint_) {
            RefreshInvalidateRect(valleyPointIndex_, bottomPointStyle_);
        }
        valleyPointIndex_ = index;
        valleyData_ = point.y;
    } else if ((index == peakPointIndex_) || (index == valleyPointIndex_)) {
        UpdatePeakAndValley(0, dataCount_);
    }

    latestIndex_ = index;
    uint16_t startIndex = (index == 0) ? index : (index - 1);
    RefreshInvalidateRect(startIndex, index + 1);
    return true;
}

bool UIChartDataSerial::GetPoint(uint16_t index, Point& point)
{
    if ((index >= dataCount_) || (pointArray_ == nullptr)) {
        return false;
    }
    point = pointArray_[index];
    if (chart_ != nullptr) {
        chart_->GetXAxis().TranslateToPixel(point.x);
        chart_->GetYAxis().TranslateToPixel(point.y);
    }
    return true;
}

void UIChartDataSerial::HidePoint(uint16_t index, uint16_t count)
{
    hideIndex_ = index;
    hideCount_ = count;
    RefreshInvalidateRect(hideIndex_, hideIndex_ + hideCount_);
}

void UIChartDataSerial::RefreshInvalidateRect(uint16_t pointIndex, const PointStyle& style)
{
    Point point;
    if (GetPoint(pointIndex, point)) {
        uint16_t width = style.radius + style.strokeWidth;
        Rect refresh(point.x - width, 0, point.x + width, 0);
        if ((invalidateRect_.GetLeft() == 0) && (invalidateRect_.GetRight() == 0)) {
            invalidateRect_ = refresh;
        } else {
            invalidateRect_.Join(invalidateRect_, refresh);
        }
    }
}

void UIChartDataSerial::RefreshInvalidateRect(uint16_t startIndex, uint16_t endIndex)
{
    Point start;
    GetPoint(startIndex, start);
    Point end;
    endIndex = (endIndex >= dataCount_) ? (dataCount_ - 1) : endIndex;
    GetPoint(endIndex, end);
    int16_t xMin = MATH_MIN(start.x, end.x);
    int16_t xMax = MATH_MAX(start.x, end.x);
    Rect refresh(xMin, 0, xMax, 0);
    if ((invalidateRect_.GetLeft() == 0) && (invalidateRect_.GetRight() == 0)) {
        invalidateRect_ = refresh;
        return;
    }
    invalidateRect_.Join(invalidateRect_, refresh);
}

bool UIChartDataSerial::UpdatePeakAndValley(uint16_t startPos, uint16_t endPos)
{
    if ((startPos >= endPos) || (endPos > dataCount_) || (pointArray_ == nullptr)) {
        return false;
    }

    if (startPos == 0) {
        peakData_ = pointArray_[startPos].y;
        valleyData_ = pointArray_[startPos].y;
    }

    for (uint16_t i = startPos; i < endPos; i++) {
        if (pointArray_[i].y > peakData_) {
            if (enableTopPoint_) {
                RefreshInvalidateRect(peakPointIndex_, topPointStyle_);
                RefreshInvalidateRect(i, topPointStyle_);
            }
            peakPointIndex_ = i;
            peakData_ = pointArray_[i].y;
        }

        if (pointArray_[i].y < valleyData_) {
            if (enableBottomPoint_) {
                RefreshInvalidateRect(valleyPointIndex_, bottomPointStyle_);
                RefreshInvalidateRect(i, bottomPointStyle_);
            }
            valleyPointIndex_ = i;
            valleyData_ = pointArray_[i].y;
        }
    }
    return true;
}

bool UIChartDataSerial::AddPoints(const Point* data, uint16_t count)
{
    if ((maxCount_ <= dataCount_) || (count == 0) || (pointArray_ == nullptr) || (data == nullptr)) {
        return false;
    }

    if (count > (maxCount_ - dataCount_)) {
        count = maxCount_ - dataCount_;
    }

    Point* current = pointArray_ + dataCount_;
    if (memcpy_s(current, (maxCount_ - dataCount_) * sizeof(Point), data, count * sizeof(Point)) != EOK) {
        return false;
    }
    uint16_t i = dataCount_;
    dataCount_ += count;
    UpdatePeakAndValley(i, dataCount_);
    latestIndex_ = dataCount_ - 1;
    uint16_t startIndex = (i == 0) ? i : (i - 1);
    RefreshInvalidateRect(startIndex, latestIndex_);
    return true;
}

void UIChartDataSerial::ClearData()
{
    RefreshInvalidateRect(0, dataCount_ - 1);
    if (pointArray_ != nullptr) {
        if (memset_s(pointArray_, maxCount_ * sizeof(Point), 0, maxCount_ * sizeof(Point)) != EOK) {
            return;
        }
    }
    dataCount_ = 0;
    valleyPointIndex_ = 0;
    peakPointIndex_ = 0;
    latestIndex_ = 0;
}

N
niulihua 已提交
330 331
void UIChartDataSerial::DoDrawPoint(BufferInfo& gfxDstBuffer, const Point& center,
                                    const PointStyle& style, const Rect& mask)
M
mamingshuai 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345
{
    Style drawStyle = StyleDefault::GetDefaultStyle();
    drawStyle.lineOpa_ = OPA_OPAQUE;
    drawStyle.lineColor_ = style.fillColor;

    ArcInfo arcinfo = {{0}};
    arcinfo.center = center;
    arcinfo.imgPos = Point{0, 0};
    arcinfo.radius = style.radius + style.strokeWidth;
    arcinfo.startAngle = 0;
    arcinfo.endAngle = CIRCLE_IN_DEGREE;

    if (style.fillColor.full == style.strokeColor.full) {
        drawStyle.lineWidth_ = style.radius + style.strokeWidth;
N
niulihua 已提交
346
        BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcinfo, mask, drawStyle, OPA_OPAQUE, CapType::CAP_NONE);
M
mamingshuai 已提交
347 348 349 350
        return;
    }
    drawStyle.lineWidth_ = style.radius;
    arcinfo.radius = style.radius;
N
niulihua 已提交
351
    BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcinfo, mask, drawStyle, OPA_OPAQUE, CapType::CAP_NONE);
M
mamingshuai 已提交
352 353 354 355

    drawStyle.lineWidth_ = style.strokeWidth;
    drawStyle.lineColor_ = style.strokeColor;
    arcinfo.radius = style.radius + style.strokeWidth;
N
niulihua 已提交
356
    BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcinfo, mask, drawStyle, OPA_OPAQUE, CapType::CAP_NONE);
M
mamingshuai 已提交
357 358
}

N
niulihua 已提交
359
void UIChartDataSerial::DrawPoint(BufferInfo& gfxDstBuffer, const Rect& mask)
M
mamingshuai 已提交
360 361 362 363
{
    Point center;
    if (enableTopPoint_) {
        if (GetPoint(peakPointIndex_, center)) {
N
niulihua 已提交
364
            DoDrawPoint(gfxDstBuffer, center, topPointStyle_, mask);
M
mamingshuai 已提交
365 366 367 368 369
        }
    }

    if (enableBottomPoint_) {
        if (GetPoint(valleyPointIndex_, center)) {
N
niulihua 已提交
370
            DoDrawPoint(gfxDstBuffer, center, bottomPointStyle_, mask);
M
mamingshuai 已提交
371 372 373 374 375
        }
    }

    if (enableHeadPoint_) {
        if (GetPoint(latestIndex_, center)) {
N
niulihua 已提交
376
            DoDrawPoint(gfxDstBuffer, center, headPointStyle_, mask);
M
mamingshuai 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
            lastPointIndex_ = latestIndex_;
        }
    }
}

void UIChartDataSerial::Refresh()
{
    if (chart_ != nullptr) {
        Rect refresh = chart_->GetContentRect();
        refresh.SetLeft(invalidateRect_.GetLeft() - headPointStyle_.radius - headPointStyle_.strokeWidth);
        refresh.SetRight(invalidateRect_.GetRight() + headPointStyle_.radius + headPointStyle_.strokeWidth);
        invalidateRect_.SetRect(0, 0, 0, 0);
        chart_->InvalidateRect(refresh);

        if (enableHeadPoint_ && (lastPointIndex_ != latestIndex_)) {
            RefreshInvalidateRect(lastPointIndex_, headPointStyle_);
            refresh.SetLeft(invalidateRect_.GetLeft());
            refresh.SetRight(invalidateRect_.GetRight());
            chart_->InvalidateRect(refresh);
            invalidateRect_.SetRect(0, 0, 0, 0);
        }
    }
}

void UIChartPillar::RefreshChart()
{
    ListNode<UIChartDataSerial*>* iter = list_.Begin();
    Rect rect = GetContentRect();
    for (; iter != list_.End(); iter = iter->next_) {
        UIChartDataSerial* data = iter->data_;
        if (data == nullptr) {
            break;
        }
        uint16_t dataCount = data->GetDataCount();
        if (dataCount <= 1) {
            break;
        }

        uint16_t index = data->GetLastPointIndex();
        if (index >= dataCount) {
            break;
        }

        Point current;
        data->GetPoint(index, current);
        Point last;
        data->GetPoint(dataCount - 1, last);
        Rect refresh(current.x, rect.GetTop(), last.x, rect.GetBottom());
        InvalidateRect(refresh);
        data->SetLastPointIndex(dataCount - 1);
    }
}

N
niulihua 已提交
430
void UIChartPillar::DrawDataSerials(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea)
M
mamingshuai 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
{
    xAxis_.UpdateAxisPoints();
    yAxis_.UpdateAxisPoints();
    uint16_t minXStep = static_cast<uint16_t>(xAxis_.GetMarkInterval());
    Point xStart = xAxis_.GetStartPoint();
    uint16_t dataSerialCount = list_.Size();
    if (dataSerialCount == 0) {
        return;
    }
    uint16_t width = minXStep / dataSerialCount;
    uint8_t dataSerialIndex = 0;
    uint16_t barWidth = static_cast<uint16_t>(width - DEFAULT_MARK_PERCENTAGE * (width << 1));

    for (ListNode<UIChartDataSerial*>* iter = list_.Begin(); iter != list_.End(); iter = iter->next_) {
        UIChartDataSerial* data = iter->data_;
        uint16_t dataSerialWidth = width * dataSerialIndex;
        int16_t x = dataSerialWidth + (width >> 1);
        for (uint16_t index = 0; index < data->GetDataCount(); index++) {
            Point current;
            data->GetPoint(index, current);
            if (current.y == xStart.y) {
                continue;
            }
            current.x += x;
            xStart.x = current.x;
N
niulihua 已提交
456 457
            BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, current, xStart, invalidatedArea, barWidth,
                                                   data->GetFillColor(), style_->lineOpa_);
M
mamingshuai 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
        }
        dataSerialIndex++;
    }
}

void UIChartPolyline::RefreshChart()
{
    ListNode<UIChartDataSerial*>* iter = list_.Begin();
    for (; iter != list_.End(); iter = iter->next_) {
        UIChartDataSerial* data = iter->data_;
        uint16_t dataCount = data->GetDataCount();
        if (dataCount == 1) {
            break;
        }
        data->Refresh();
    }
}

void UIChartPolyline::ReMeasure()
{
    if (!needRefresh_) {
        return;
    }
    needRefresh_ = false;
    int16_t height = GetHeight();
    if (mixData_ != nullptr) {
        UIFree(mixData_);
        mixData_ = nullptr;
    }
    if (height <= 0) {
        return;
    }
    if (height > COORD_MAX) {
        height = COORD_MAX;
    }
    mixData_ = static_cast<uint8_t*>(UIMalloc(height));
    if (mixData_ == nullptr) {
        return;
    }
    int16_t opa = maxOpa_ - minOpa_;
    for (int16_t y = 0; y < height; y++) {
        mixData_[y] = static_cast<uint8_t>(y * opa / height + minOpa_);
    }
}

N
niulihua 已提交
503
void UIChartPolyline::DrawDataSerials(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea)
M
mamingshuai 已提交
504 505 506 507 508 509 510 511 512 513 514
{
    xAxis_.UpdateAxisPoints();
    yAxis_.UpdateAxisPoints();
    ListNode<UIChartDataSerial*>* iter = list_.Begin();
    for (; iter != list_.End(); iter = iter->next_) {
        UIChartDataSerial* data = iter->data_;
        uint16_t dataCount = data->GetDataCount();
        if (dataCount <= 1) {
            continue;
        }
        if (data->IsGradient()) {
N
niulihua 已提交
515
            GradientColor(gfxDstBuffer, invalidatedArea, data);
M
mamingshuai 已提交
516 517 518
        }
        if (data->GetHideCount() != 0) {
            uint16_t hideIndex = data->GetHideIndex();
N
niulihua 已提交
519 520
            DrawPolyLine(gfxDstBuffer, 0, hideIndex, invalidatedArea, data);
            DrawPolyLine(gfxDstBuffer, hideIndex + data->GetHideCount(), dataCount - 1, invalidatedArea, data);
M
mamingshuai 已提交
521
        } else {
N
niulihua 已提交
522
            DrawPolyLine(gfxDstBuffer, 0, dataCount - 1, invalidatedArea, data);
M
mamingshuai 已提交
523 524
        }

N
niulihua 已提交
525
        data->DrawPoint(gfxDstBuffer, invalidatedArea);
M
mamingshuai 已提交
526 527 528
    }
}

N
niulihua 已提交
529 530
void UIChartPolyline::DrawSmoothPolyLine(BufferInfo& gfxDstBuffer,
                                         uint16_t startIndex,
M
mamingshuai 已提交
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
                                         uint16_t endIndex,
                                         const Rect& invalidatedArea,
                                         UIChartDataSerial* data)
{
    if (data == nullptr) {
        return;
    }
    Point start;
    Point end;
    ColorType color = data->GetLineColor();
    Style style = *style_;
    style.lineColor_ = color;
    style.lineOpa_ = OPA_OPAQUE;

    uint16_t slope;
    data->GetPoint(startIndex, start);
    data->GetPoint(startIndex + 1, end);
    uint16_t preSlope = (start.x == end.x) ? QUARTER_IN_DEGREE : FastAtan2(end.x - start.x, end.y - start.y);
    Point current;
    for (uint16_t i = startIndex; i < endIndex; i++) {
        data->GetPoint(i + 1, current);
        if (((end.y - start.y <= 0) && (current.y - end.y <= 0)) ||
            ((end.y - start.y >= 0) && (current.y - end.y >= 0))) {
            slope = (current.x == start.x) ? QUARTER_IN_DEGREE : FastAtan2(current.x - start.x, current.y - start.y);
            if (MATH_ABS(slope - preSlope) < SMOOTH_SLOPE_ANGLE) {
                end = current;
                continue;
            }
        }
        preSlope = (current.x == end.x) ? QUARTER_IN_DEGREE : FastAtan2(current.x - end.x, current.y - end.y);
        Rect rect;
        rect.SetLeft(MATH_MIN(start.x, end.x) - style_->lineWidth_);
        rect.SetRight(MATH_MAX(start.x, end.x) + style_->lineWidth_);
        rect.SetTop(MATH_MIN(start.y, end.y) - style_->lineWidth_);
        rect.SetBottom(MATH_MAX(start.y, end.y) + style_->lineWidth_);
        if (!invalidatedArea.IsIntersect(rect)) {
            start = end;
            end = current;
            continue;
        }

N
niulihua 已提交
572 573
        BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, end, invalidatedArea,
            style_->lineWidth_, color, OPA_OPAQUE);
M
mamingshuai 已提交
574 575 576 577 578 579 580
        ArcInfo arcinfo = {{0}};
        arcinfo.center = end;
        arcinfo.imgPos = Point{0, 0};
        arcinfo.radius = (style_->lineWidth_ + 1) >> 1;
        arcinfo.startAngle = 0;
        arcinfo.endAngle = CIRCLE_IN_DEGREE;

N
niulihua 已提交
581 582
        BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcinfo, invalidatedArea,
            style, OPA_OPAQUE, CapType::CAP_NONE);
M
mamingshuai 已提交
583 584 585 586

        start = end;
        end = current;
    }
N
niulihua 已提交
587 588
    BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, end, invalidatedArea,
        style_->lineWidth_, color, OPA_OPAQUE);
M
mamingshuai 已提交
589 590
}

N
niulihua 已提交
591 592
void UIChartPolyline::DrawPolyLine(BufferInfo& gfxDstBuffer,
                                   uint16_t startIndex,
M
mamingshuai 已提交
593 594 595 596 597 598 599 600 601
                                   uint16_t endIndex,
                                   const Rect& invalidatedArea,
                                   UIChartDataSerial* data)
{
    if ((startIndex >= endIndex) || (data == nullptr)) {
        return;
    }

    if (data->IsSmooth()) {
N
niulihua 已提交
602
        DrawSmoothPolyLine(gfxDstBuffer, startIndex, endIndex, invalidatedArea, data);
M
mamingshuai 已提交
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
        return;
    }
    Point start;
    Point end;
    ColorType color = data->GetLineColor();
    Style style = *style_;
    style.lineColor_ = color;
    style.lineOpa_ = OPA_OPAQUE;
    ArcInfo arcinfo = {{0}};
    arcinfo.imgPos = Point{0, 0};
    arcinfo.radius = (style_->lineWidth_ + 1) >> 1;
    arcinfo.startAngle = 0;
    arcinfo.endAngle = CIRCLE_IN_DEGREE;
    for (uint16_t i = startIndex; i < endIndex - 1; i++) {
        data->GetPoint(i, start);
        data->GetPoint(i + 1, end);
        Rect rect;
        rect.SetLeft(MATH_MIN(start.x, end.x) - style_->lineWidth_);
        rect.SetRight(MATH_MAX(start.x, end.x) + style_->lineWidth_);
        rect.SetTop(MATH_MIN(start.y, end.y) - style_->lineWidth_);
        rect.SetBottom(MATH_MAX(start.y, end.y) + style_->lineWidth_);
        if (!invalidatedArea.IsIntersect(rect)) {
            continue;
        }

N
niulihua 已提交
628 629
        BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, end, invalidatedArea,
            style_->lineWidth_, color, OPA_OPAQUE);
M
mamingshuai 已提交
630 631
        if (style_->lineWidth_ >= LINE_JOIN_WIDTH) {
            arcinfo.center = end;
N
niulihua 已提交
632 633
            BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcinfo, invalidatedArea,
                style, OPA_OPAQUE, CapType::CAP_NONE);
M
mamingshuai 已提交
634 635 636 637
        }
    }
    data->GetPoint(endIndex - 1, start);
    data->GetPoint(endIndex, end);
N
niulihua 已提交
638 639
    BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, end, invalidatedArea,
        style_->lineWidth_, color, OPA_OPAQUE);
M
mamingshuai 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
}

bool UIChartPolyline::GetLineCrossPoint(const Point& p1,
                                        const Point& p2,
                                        const Point& p3,
                                        const Point& p4,
                                        Point& cross)
{
    /* Rectangular ranges of line segments must intersect. */
    if ((MATH_MIN(p1.x, p2.x) <= MATH_MAX(p3.x, p4.x)) && (MATH_MIN(p3.x, p4.x) <= MATH_MAX(p1.x, p2.x)) &&
        (MATH_MIN(p1.y, p2.y) <= MATH_MAX(p3.y, p4.y)) && (MATH_MIN(p3.y, p4.y) <= MATH_MAX(p1.y, p2.y))) {
        /* Check whether the lines are parallel. If the lines are collinear, there is no intersection point. */
        if ((p4.y - p3.y) * (p2.x - p1.x) - (p4.x - p3.x) * (p2.y - p1.y) != 0) {
            /*
             * (y1 - y2)x + (x2 - x1)y = x2y1 - x1y2  ->  ax + by = c
             * (y3 - y4)x + (x4 - x3)y = x4y3 - x3y4  ->  dx + ey = f
             */
            int64_t a = p1.y - p2.y;
            int64_t b = p2.x - p1.x;
            int64_t c = p2.x * p1.y - p1.x * p2.y;
            int64_t d = p3.y - p4.y;
            int64_t e = p4.x - p3.x;
            int64_t f = p4.x * p3.y - p3.x * p4.y;
            int64_t left = a * e - b * d;
            int64_t right = c * e - b * f;
            if (left == 0) {
                return false;
            }
            cross.x = static_cast<int16_t>(right / left);
            left = b * d - a * e;
            right = c * d - a * f;
            if (left == 0) {
                return false;
            }
            cross.y = static_cast<int16_t>(right / left);
            if ((cross.x >= MATH_MIN(p1.x, p2.x)) && (cross.x <= MATH_MAX(p1.x, p2.x)) &&
                (cross.x >= MATH_MIN(p3.x, p4.x)) && (cross.x <= MATH_MAX(p3.x, p4.x))) {
                return true;
            }
        }
    }
681 682 683 684
    if ((MATH_MIN(p1.x, p2.x) <= MATH_MAX(p3.x, p4.x)) && (MATH_MIN(p3.x, p4.x) <= MATH_MAX(p1.x, p2.x)) &&
    (MATH_MIN(p1.y, p2.y) >= MATH_MAX(p3.y, p4.y)) && (MATH_MIN(p3.y, p4.y) <= MATH_MAX(p1.y, p2.y))) {
        return enableReverse_ ? true : false;
    }
M
mamingshuai 已提交
685 686 687 688 689 690
    return false;
}

void UIChartPolyline::FindCrossPoints(const ChartLine& line, const ChartLine& polyLine, CrossPointSet& cross)
{
    if (GetLineCrossPoint(line.start, line.end, polyLine.start, polyLine.end, cross.nextFirst)) {
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
        if (enableReverse_ && (MATH_MIN(line.start.y, line.end.y) >= MATH_MAX(polyLine.start.y, polyLine.end.y))) {
            if (!cross.firstFind) {
                if (polyLine.start.y < polyLine.end.y) {
                    cross.first = cross.nextFirst;
                    cross.firstFind = false;
                }
            } else if (!cross.secondFind) {
                if ((cross.first.x != cross.nextFirst.x) || (cross.first.y != cross.nextFirst.y)) {
                    cross.second = cross.nextFirst;
                    cross.secondFind = true;
                    return;
                }
                if (polyLine.start.y > polyLine.end.y) {
                    cross.firstFind = true;
                }
            }
            return;
        }
M
mamingshuai 已提交
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
        if (!cross.firstFind) {
            /* first corss must on the line like "/" */
            if (polyLine.start.y < polyLine.end.y) {
                cross.first = cross.nextFirst;
                cross.firstFind = true;
            }
        } else if (!cross.secondFind) {
            /* second corss can't be same with first cross. */
            if ((cross.first.x != cross.nextFirst.x) || (cross.first.y != cross.nextFirst.y)) {
                cross.second = cross.nextFirst;
                cross.secondFind = true;
                return;
            }
            /* second corss must on the line like "\", otherwise skip those crosss. */
            if (polyLine.start.y > polyLine.end.y) {
                cross.firstFind = false;
            }
        }
    }
}

N
niulihua 已提交
730 731
void UIChartPolyline::DrawGradientColor(BufferInfo& gfxDstBuffer,
                                        const Rect& invalidatedArea,
M
mamingshuai 已提交
732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
                                        UIChartDataSerial* data,
                                        const ChartLine& linePoints,
                                        const ChartLine& limitPoints,
                                        int16_t startY)
{
    if (data == nullptr) {
        return;
    }
    Rect currentRect = GetContentRect();
    CrossPointSet cross = {{0}};
    ChartLine polyLine = {{0}};
    uint16_t pointCount = data->GetDataCount() - 1;
    int16_t y = enableReverse_ ? (linePoints.start.y + startY) : (startY - linePoints.start.y);
    int16_t mixScale = !enableReverse_ ? (currentRect.GetBottom() - y) : (y - currentRect.GetTop());
    if ((mixScale < 0) || (mixScale >= currentRect.GetHeight())) {
        return;
    }
    bool onVerticalLine = enableReverse_ ? (y <= limitPoints.start.y) : (y >= limitPoints.start.y);
    if (onVerticalLine) {
        cross.first.x = limitPoints.start.x;
        cross.first.y = enableReverse_ ? (y - startY) : (startY - y);
        cross.firstFind = true;
    }

    Point start;
    Point end;
    for (uint16_t i = 0; i < pointCount; i++) {
        data->GetPoint(i, start);
        data->GetPoint(i + 1, end);
        if (start.y == end.y) {
            int16_t tmpY = enableReverse_ ? (start.y + startY) : (startY - start.y);
            if (tmpY == linePoints.start.y) {
                cross.firstFind = false;
                cross.secondFind = false;
            }
            continue;
        }
        start.y = enableReverse_ ? (start.y - startY) : (startY - start.y);
        end.y = enableReverse_ ? (end.y - startY) : (startY - end.y);
W
wangtiantian 已提交
771
        polyLine = { start, end };
M
mamingshuai 已提交
772 773 774 775
        FindCrossPoints(linePoints, polyLine, cross);
        if (cross.firstFind && cross.secondFind) {
            cross.first.y = enableReverse_ ? (cross.first.y + startY) : (startY - cross.first.y);
            cross.second.y = enableReverse_ ? (cross.second.y + startY) : (startY - cross.second.y);
N
niulihua 已提交
776 777
            BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, cross.first, cross.second,
                invalidatedArea, 1, data->GetFillColor(), mixData_[mixScale]);
M
mamingshuai 已提交
778 779 780 781 782 783
            cross.firstFind = false;
            cross.secondFind = false;
        }
    }

    if (cross.firstFind && !cross.secondFind) {
W
wangtiantian 已提交
784
        cross.second = { limitPoints.end.x, y };
M
mamingshuai 已提交
785
        cross.first.y = y;
N
niulihua 已提交
786 787
        BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, cross.first, cross.second,
            invalidatedArea, 1, data->GetFillColor(), mixData_[mixScale]);
M
mamingshuai 已提交
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
    }
}

void UIChartPolyline::CalcVerticalInfo(int16_t top,
                                       int16_t bottom,
                                       int16_t start,
                                       int16_t end,
                                       int16_t& y,
                                       int16_t& yHeight)
{
    if ((top < start) && (bottom > start)) {
        y = start;
        yHeight = top;
    } else if ((bottom <= start) && (top >= end)) {
        y = bottom;
        yHeight = top;
    } else if ((top < end) && (bottom > end)) {
        y = bottom;
        yHeight = end;
    }
}

N
niulihua 已提交
810
void UIChartPolyline::GradientColor(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea, UIChartDataSerial* data)
M
mamingshuai 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
{
    if (data == nullptr) {
        return;
    }
    int16_t bottom = invalidatedArea.GetBottom();
    int16_t top = invalidatedArea.GetTop();
    Point yStart = yAxis_.GetStartPoint();
    yStart.y = enableReverse_ ? (yStart.y + gradientBottom_) : (yStart.y - gradientBottom_);
    int16_t topY = enableReverse_ ? data->GetValleyData() : data->GetPeakData();
    int16_t bottomY = enableReverse_ ? data->GetPeakData() : data->GetValleyData();
    yAxis_.TranslateToPixel(topY);
    yAxis_.TranslateToPixel(bottomY);
    int16_t valleyY = enableReverse_ ? topY : bottomY;
    int16_t startY = enableReverse_ ? topY : yStart.y;
    int16_t endY = enableReverse_ ? yStart.y : topY;
    if ((bottom < endY) || (top > startY)) {
        return;
    }

    int16_t y = 0;
    int16_t yHeight = 0;
    CalcVerticalInfo(top, bottom, startY, endY, y, yHeight);

    ChartLine limitPoints = {{0}};
    data->GetPoint(0, limitPoints.start);
    data->GetPoint(data->GetDataCount() - 1, limitPoints.end);
    ChartLine linePoints = {{0}};
    linePoints.start.x = limitPoints.start.x;
    linePoints.end.x = limitPoints.end.x;
    Rect currentRect = GetContentRect();
    while (y >= yHeight) {
        linePoints.start.y = enableReverse_ ? (y - endY) : (startY - y);
        linePoints.end.y = linePoints.start.y;
        if (y <= valleyY) {
            int16_t baseY = enableReverse_ ? endY : startY;
N
niulihua 已提交
846
            DrawGradientColor(gfxDstBuffer, invalidatedArea, data, linePoints, limitPoints, baseY);
M
mamingshuai 已提交
847 848 849 850 851 852 853 854 855
        } else {
            int16_t mixScale = enableReverse_ ? (linePoints.start.y + endY - currentRect.GetTop()) :
                                                (currentRect.GetBottom() - (startY - linePoints.start.y));
            if ((mixScale < 0) || (mixScale >= currentRect.GetHeight())) {
                y--;
                continue;
            }
            Point start = {limitPoints.start.x, y};
            Point end = {limitPoints.end.x, y};
N
niulihua 已提交
856 857
            BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, end, invalidatedArea, 1,
                                                   data->GetFillColor(), mixData_[mixScale]);
M
mamingshuai 已提交
858 859 860 861
        }
        y--;
    }
}
N
niulihua 已提交
862
} // namespace OHOS