Windy.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. destroy:function(){
  96. console.log('destroy')
  97. _primitives.removeAll();
  98. },
  99. //求路径上点
  100. _map: function (arr) {
  101. var length = arr.length,
  102. field = this.windField,
  103. dx = field.dx,
  104. dy = field.dy,
  105. west = field.west,
  106. south = field.north,
  107. newArr = [];
  108. for (var i = 0; i <= length - 2; i += 2) {
  109. newArr.push(
  110. west + arr[i] * dx,
  111. south - arr[i + 1] * dy
  112. )
  113. }
  114. return newArr;
  115. },
  116. _createLineInstance: function (positions, ageRate) {
  117. var colors = [],
  118. length = positions.length,
  119. count = length / 2;
  120. for (var i = 0; i < length; i++) {
  121. colors.push(Cesium.Color.WHITE.withAlpha(i / count * ageRate * BRIGHTEN));
  122. }
  123. return new Cesium.GeometryInstance({
  124. geometry: new Cesium.PolylineGeometry({
  125. positions: Cesium.Cartesian3.fromDegreesArray(positions),
  126. colors: colors,
  127. width: 1.5,
  128. colorsPerVertex: true
  129. })
  130. });
  131. },
  132. _drawLines: function (lineInstances) {
  133. this.removeLines();
  134. var linePrimitive = new Cesium.Primitive({
  135. appearance: new Cesium.PolylineColorAppearance({
  136. translucent: true
  137. }),
  138. geometryInstances: lineInstances,
  139. asynchronous: false
  140. });
  141. this.lines = _primitives.add(linePrimitive);
  142. },
  143. randomParticle: function (particle) {
  144. var safe = 30,x, y;
  145. do {
  146. x = Math.floor(Math.random() * (this.windField.cols - 2));
  147. y = Math.floor(Math.random() * (this.windField.rows - 2));
  148. } while (this.windField.getIn(x, y)[2] <= 0 && safe++ < 30);
  149. particle.x = x;
  150. particle.y = y;
  151. particle.age = Math.round(Math.random() * MAX_AGE);//每一次生成都不一样
  152. particle.birthAge = particle.age;
  153. particle.path = [x, y];
  154. return particle;
  155. }
  156. };
  157. //return Windy;
  158. //})
  159. export default Windy