Windy.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. var Cesium = require("cesium/Cesium");
  2. import WindField from "./WindField";
  3. import Particle from "./Particle";
  4. //define([ 'windy/Particle', 'windy/WindField'], function ( Particle, WindField) {
  5. var _primitives = null;
  6. var SPEED_RATE = 0.15;
  7. var PARTICLES_NUMBER =2000;//默认2000
  8. var MAX_AGE = 10;
  9. var BRIGHTEN = 1.5;
  10. var Windy = function (json, cesiumViewer) {
  11. this.windData = json;
  12. this.windField = null;
  13. this.particles = [];
  14. this.lines = null;
  15. _primitives = cesiumViewer.scene.primitives;
  16. this._init();
  17. };
  18. Windy.prototype = {
  19. constructor: Windy,
  20. _init: function () {
  21. // 创建风场网格
  22. this.windField = this.createField();
  23. // 创建风场粒子
  24. for (var i = 0; i < PARTICLES_NUMBER; i++) {
  25. this.particles.push(this.randomParticle(new Particle()));
  26. }
  27. },
  28. createField: function () {
  29. var data = this._parseWindJson();
  30. return new WindField(data);
  31. },
  32. animate: function () {
  33. var self = this,
  34. field = self.windField,
  35. particles = self.particles;
  36. var instances = [],
  37. nextX = null,
  38. nextY = null,
  39. xy = null,
  40. uv = null;
  41. particles.forEach(function (particle) {
  42. if (particle.age <= 0) {
  43. self.randomParticle(particle);
  44. }
  45. if (particle.age > 0) {
  46. var x = particle.x,
  47. y = particle.y;
  48. if (!field.isInBound(x, y)) {
  49. particle.age = 0;
  50. } else {
  51. uv = field.getIn(x, y);
  52. nextX = x + SPEED_RATE * uv[0];
  53. nextY = y + SPEED_RATE * uv[1];
  54. particle.path.push(nextX, nextY);
  55. particle.x = nextX;
  56. particle.y = nextY;
  57. instances.push(self._createLineInstance(self._map(particle.path), particle.age / particle.birthAge));
  58. particle.age--;
  59. }
  60. }
  61. });
  62. if (instances.length <= 0) this.removeLines();
  63. self._drawLines(instances);
  64. },
  65. _parseWindJson: function () {
  66. var uComponent = null,
  67. vComponent = null,
  68. header = null;
  69. this.windData.forEach(function (record) {
  70. var type = record.header.parameterCategory + "," + record.header.parameterNumber;
  71. switch (type) {
  72. case "2,2":
  73. uComponent = record['data'];
  74. header = record['header'];
  75. break;
  76. case "2,3":
  77. vComponent = record['data'];
  78. break;
  79. default:
  80. break;
  81. }
  82. });
  83. return {
  84. header: header,
  85. uComponent: uComponent,
  86. vComponent: vComponent
  87. };
  88. },
  89. removeLines: function () {
  90. if (this.lines) {
  91. _primitives.remove(this.lines);
  92. // this.lines.destroy();
  93. }
  94. },
  95. //求路径上点
  96. _map: function (arr) {
  97. var length = arr.length,
  98. field = this.windField,
  99. dx = field.dx,
  100. dy = field.dy,
  101. west = field.west,
  102. south = field.north,
  103. newArr = [];
  104. for (var i = 0; i <= length - 2; i += 2) {
  105. newArr.push(
  106. west + arr[i] * dx,
  107. south - arr[i + 1] * dy
  108. )
  109. }
  110. return newArr;
  111. },
  112. _createLineInstance: function (positions, ageRate) {
  113. var colors = [],
  114. length = positions.length,
  115. count = length / 2;
  116. for (var i = 0; i < length; i++) {
  117. colors.push(Cesium.Color.WHITE.withAlpha(i / count * ageRate * BRIGHTEN));
  118. }
  119. return new Cesium.GeometryInstance({
  120. geometry: new Cesium.PolylineGeometry({
  121. positions: Cesium.Cartesian3.fromDegreesArray(positions),
  122. colors: colors,
  123. width: 1.5,
  124. colorsPerVertex: true
  125. })
  126. });
  127. },
  128. _drawLines: function (lineInstances) {
  129. this.removeLines();
  130. var linePrimitive = new Cesium.Primitive({
  131. appearance: new Cesium.PolylineColorAppearance({
  132. translucent: true
  133. }),
  134. geometryInstances: lineInstances,
  135. asynchronous: false
  136. });
  137. this.lines = _primitives.add(linePrimitive);
  138. },
  139. randomParticle: function (particle) {
  140. var safe = 30,x, y;
  141. do {
  142. x = Math.floor(Math.random() * (this.windField.cols - 2));
  143. y = Math.floor(Math.random() * (this.windField.rows - 2));
  144. } while (this.windField.getIn(x, y)[2] <= 0 && safe++ < 30);
  145. particle.x = x;
  146. particle.y = y;
  147. particle.age = Math.round(Math.random() * MAX_AGE);//每一次生成都不一样
  148. particle.birthAge = particle.age;
  149. particle.path = [x, y];
  150. return particle;
  151. }
  152. };
  153. //return Windy;
  154. //})
  155. export default Windy