linesLayout.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * AUTO-GENERATED FILE. DO NOT MODIFY.
  21. */
  22. /*
  23. * Licensed to the Apache Software Foundation (ASF) under one
  24. * or more contributor license agreements. See the NOTICE file
  25. * distributed with this work for additional information
  26. * regarding copyright ownership. The ASF licenses this file
  27. * to you under the Apache License, Version 2.0 (the
  28. * "License"); you may not use this file except in compliance
  29. * with the License. You may obtain a copy of the License at
  30. *
  31. * http://www.apache.org/licenses/LICENSE-2.0
  32. *
  33. * Unless required by applicable law or agreed to in writing,
  34. * software distributed under the License is distributed on an
  35. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  36. * KIND, either express or implied. See the License for the
  37. * specific language governing permissions and limitations
  38. * under the License.
  39. */
  40. /* global Float32Array */
  41. import createRenderPlanner from '../helper/createRenderPlanner';
  42. var linesLayout = {
  43. seriesType: 'lines',
  44. plan: createRenderPlanner(),
  45. reset: function (seriesModel) {
  46. var coordSys = seriesModel.coordinateSystem;
  47. var isPolyline = seriesModel.get('polyline');
  48. var isLarge = seriesModel.pipelineContext.large;
  49. return {
  50. progress: function (params, lineData) {
  51. var lineCoords = [];
  52. if (isLarge) {
  53. var points = void 0;
  54. var segCount = params.end - params.start;
  55. if (isPolyline) {
  56. var totalCoordsCount = 0;
  57. for (var i = params.start; i < params.end; i++) {
  58. totalCoordsCount += seriesModel.getLineCoordsCount(i);
  59. }
  60. points = new Float32Array(segCount + totalCoordsCount * 2);
  61. } else {
  62. points = new Float32Array(segCount * 4);
  63. }
  64. var offset = 0;
  65. var pt = [];
  66. for (var i = params.start; i < params.end; i++) {
  67. var len = seriesModel.getLineCoords(i, lineCoords);
  68. if (isPolyline) {
  69. points[offset++] = len;
  70. }
  71. for (var k = 0; k < len; k++) {
  72. pt = coordSys.dataToPoint(lineCoords[k], false, pt);
  73. points[offset++] = pt[0];
  74. points[offset++] = pt[1];
  75. }
  76. }
  77. lineData.setLayout('linesPoints', points);
  78. } else {
  79. for (var i = params.start; i < params.end; i++) {
  80. var itemModel = lineData.getItemModel(i);
  81. var len = seriesModel.getLineCoords(i, lineCoords);
  82. var pts = [];
  83. if (isPolyline) {
  84. for (var j = 0; j < len; j++) {
  85. pts.push(coordSys.dataToPoint(lineCoords[j]));
  86. }
  87. } else {
  88. pts[0] = coordSys.dataToPoint(lineCoords[0]);
  89. pts[1] = coordSys.dataToPoint(lineCoords[1]);
  90. var curveness = itemModel.get(['lineStyle', 'curveness']);
  91. if (+curveness) {
  92. pts[2] = [(pts[0][0] + pts[1][0]) / 2 - (pts[0][1] - pts[1][1]) * curveness, (pts[0][1] + pts[1][1]) / 2 - (pts[1][0] - pts[0][0]) * curveness];
  93. }
  94. }
  95. lineData.setItemLayout(i, pts);
  96. }
  97. }
  98. }
  99. };
  100. }
  101. };
  102. export default linesLayout;