@pirireis/webglobeplugins 0.9.7 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Math/angle-calculation.js +15 -0
- package/dist/Math/arc.js +65 -0
- package/dist/Math/bounds/line-bbox.js +188 -0
- package/dist/Math/constants.js +9 -0
- package/dist/Math/frustum/camera.js +24 -0
- package/dist/Math/frustum/from-globeinfo.js +48 -0
- package/dist/Math/frustum/types.js +2 -0
- package/dist/Math/globe-util/horizon-plane.js +112 -0
- package/dist/Math/index.js +1 -0
- package/dist/Math/juction/arc-plane.js +83 -0
- package/dist/Math/juction/line-sphere.js +25 -0
- package/dist/Math/juction/plane-plane.js +58 -0
- package/dist/Math/line.js +56 -0
- package/dist/Math/matrix4.js +1 -0
- package/dist/Math/methods.js +201 -0
- package/dist/Math/plane.js +60 -0
- package/dist/Math/quaternion.js +104 -0
- package/dist/Math/types.js +2 -0
- package/dist/Math/utils.js +4 -0
- package/dist/Math/vec3.js +126 -0
- package/dist/algorithms/search-binary.js +19 -0
- package/dist/altitude-locator/adaptors.js +1 -0
- package/dist/altitude-locator/draw-subset-obj.js +18 -0
- package/dist/altitude-locator/keymethod.js +1 -0
- package/dist/altitude-locator/plugin.js +341 -0
- package/dist/altitude-locator/types.js +23 -0
- package/dist/arrowfield/adaptor.js +14 -0
- package/dist/arrowfield/index.js +10 -0
- package/dist/arrowfield/plugin.js +86 -0
- package/dist/bearing-line/index.js +8 -0
- package/dist/bearing-line/plugin.js +449 -0
- package/dist/circle-line-chain/chain-list-map.js +205 -0
- package/dist/circle-line-chain/init.js +1 -0
- package/dist/circle-line-chain/plugin.js +424 -0
- package/dist/circle-line-chain/util.js +5 -0
- package/dist/compass-rose/compass-rose-padding-flat.js +225 -0
- package/dist/compass-rose/compass-text-writer.js +153 -0
- package/dist/compass-rose/index.js +7 -0
- package/dist/compassrose/compassrose.js +296 -0
- package/dist/compassrose/index.js +8 -0
- package/dist/globe-types.js +1 -0
- package/dist/heatwave/index.js +10 -0
- package/dist/heatwave/isobar/objectarraylabels.js +202 -0
- package/dist/heatwave/isobar/plugin.js +343 -0
- package/dist/heatwave/isobar/quadtreecontours.js +300 -0
- package/dist/heatwave/plugins/heatwaveglobeshell.js +206 -0
- package/dist/index.js +58 -0
- package/dist/jest.config.js +7 -0
- package/dist/partialrings/buffer-manager.js +81 -0
- package/dist/partialrings/index.js +41 -0
- package/dist/partialrings/plugin.js +135 -0
- package/dist/partialrings/program.js +286 -0
- package/dist/pin/pin-object-array.js +305 -0
- package/dist/pin/pin-point-totem.js +60 -0
- package/dist/point-heat-map/adaptors/timetracksplugin-format-to-this.js +66 -0
- package/dist/point-heat-map/index.js +1 -0
- package/dist/point-heat-map/plugin-webworker.js +126 -0
- package/dist/point-heat-map/point-to-heat-map-flow.js +127 -0
- package/dist/point-tracks/key-methods.js +5 -0
- package/dist/point-tracks/plugin.js +338 -0
- package/dist/programs/arrowfield/index.js +7 -0
- package/dist/programs/arrowfield/logic.js +257 -0
- package/dist/programs/arrowfield/object.js +66 -0
- package/dist/programs/data2legend/density-to-legend.js +101 -0
- package/dist/programs/data2legend/point-to-density-texture.js +100 -0
- package/dist/programs/float2legendwithratio/index.js +8 -0
- package/dist/programs/float2legendwithratio/logic.js +171 -0
- package/dist/programs/float2legendwithratio/object.js +110 -0
- package/dist/programs/globe-util/is-globe-moved.js +21 -0
- package/dist/programs/globeshell/index.js +8 -0
- package/dist/programs/globeshell/noise/noises.js +1 -0
- package/dist/programs/globeshell/wiggle/index.js +8 -0
- package/dist/programs/globeshell/wiggle/logic.js +345 -0
- package/dist/programs/globeshell/wiggle/object.js +72 -0
- package/dist/programs/helpers/blender/index.js +1 -0
- package/dist/programs/helpers/blender/program.js +79 -0
- package/dist/programs/helpers/fadeaway/index.js +7 -0
- package/dist/programs/helpers/fadeaway/logic.js +72 -0
- package/dist/programs/helpers/fadeaway/object.js +20 -0
- package/dist/programs/helpers/index.js +8 -0
- package/dist/programs/index.js +58 -0
- package/dist/programs/interface.js +1 -0
- package/dist/programs/line-on-globe/angled-line.js +176 -0
- package/dist/programs/line-on-globe/circle-accurate-3d.js +141 -0
- package/dist/programs/line-on-globe/circle-accurate-flat.js +216 -0
- package/dist/programs/line-on-globe/circle-accurate.js +178 -0
- package/dist/programs/line-on-globe/circle.js +167 -0
- package/dist/programs/line-on-globe/degree-padding-around-circle-3d.js +159 -0
- package/dist/programs/line-on-globe/index.js +1 -0
- package/dist/programs/line-on-globe/lines-color-instanced-flat.js +136 -0
- package/dist/programs/line-on-globe/linestrip.js +171 -0
- package/dist/programs/line-on-globe/naive-accurate-flexible.js +195 -0
- package/dist/programs/line-on-globe/to-the-surface.js +111 -0
- package/dist/programs/line-on-globe/util.js +8 -0
- package/dist/programs/picking/pickable-renderer.js +188 -0
- package/dist/programs/point-on-globe/element-globe-surface-glow.js +142 -0
- package/dist/programs/point-on-globe/element-point-glow.js +153 -0
- package/dist/programs/point-on-globe/square-pixel-point.js +174 -0
- package/dist/programs/programcache.js +131 -0
- package/dist/programs/rings/distancering/circleflatprogram.js +156 -0
- package/dist/programs/rings/distancering/circlepaddingfreeangleprogram.js +369 -0
- package/dist/programs/rings/distancering/circlepaddysharedbuffer.js +357 -0
- package/dist/programs/rings/distancering/index.js +14 -0
- package/dist/programs/rings/distancering/paddyflatprogram.js +172 -0
- package/dist/programs/rings/distancering/paddyflatprogram2d.js +174 -0
- package/dist/programs/rings/distancering/paddyflatprogram3d.js +172 -0
- package/dist/programs/rings/distancering/shader.js +1 -0
- package/dist/programs/rings/index.js +17 -0
- package/dist/programs/rings/partial-ring/piece-of-pie.js +275 -0
- package/dist/programs/totems/camerauniformblock.js +160 -0
- package/dist/programs/totems/canvas-webglobe-info.js +110 -0
- package/dist/programs/totems/gpu-selection-uniform-block.js +108 -0
- package/dist/programs/totems/index.js +40 -0
- package/dist/programs/two-d/pixel-circle.js +1 -0
- package/dist/programs/two-d/pixel-padding-for-compass.js +162 -0
- package/dist/programs/util.js +17 -0
- package/dist/programs/vectorfields/index.js +23 -0
- package/dist/programs/vectorfields/logics/drawrectangleparticles.js +107 -0
- package/dist/programs/vectorfields/logics/index.js +12 -0
- package/dist/programs/vectorfields/logics/pixelbased.js +142 -0
- package/dist/programs/vectorfields/logics/ubo.js +63 -0
- package/dist/programs/vectorfields/pingpongbuffermanager.js +76 -0
- package/dist/rangerings/enum.js +5 -0
- package/dist/rangerings/index.js +15 -0
- package/dist/rangerings/plugin.js +560 -0
- package/dist/rangerings/rangeringangletext.js +329 -0
- package/dist/rangerings/ring-account.js +117 -0
- package/dist/shaders/fragment-toy/firework.js +58 -0
- package/dist/shaders/fragment-toy/singularity.js +59 -0
- package/dist/shape-on-terrain/arc/naive/plugin.js +252 -0
- package/dist/timetracks/adaptors-line-strip.js +71 -0
- package/dist/timetracks/adaptors.js +122 -0
- package/dist/timetracks/index.js +19 -0
- package/dist/timetracks/plugin-line-strip.js +250 -0
- package/dist/timetracks/plugin.js +258 -0
- package/dist/timetracks/program-line-strip.js +611 -0
- package/dist/timetracks/program.js +772 -0
- package/dist/timetracks/programpoint-line-strip.js +154 -0
- package/dist/timetracks/programpoint.js +147 -0
- package/dist/types.js +15 -0
- package/dist/util/account/bufferoffsetmanager.js +179 -0
- package/dist/util/account/index.js +23 -0
- package/dist/util/account/single-attribute-buffer-management/buffer-manager.js +108 -0
- package/dist/util/account/single-attribute-buffer-management/buffer-orchestrator.js +150 -0
- package/dist/util/account/single-attribute-buffer-management/index.js +9 -0
- package/dist/util/account/single-attribute-buffer-management/object-store.js +51 -0
- package/dist/util/account/single-attribute-buffer-management/types.js +2 -0
- package/dist/util/account/util.js +22 -0
- package/dist/util/algorithms/index.js +1 -0
- package/dist/util/algorithms/search-binary.js +28 -0
- package/dist/util/check/get.js +18 -0
- package/dist/util/check/index.js +1 -0
- package/dist/util/check/typecheck.js +49 -0
- package/dist/util/geometry/index.js +51 -0
- package/dist/util/gl-util/buffer/attribute-loader.js +69 -0
- package/dist/util/gl-util/buffer/index.js +6 -0
- package/dist/util/gl-util/buffer/types.js +1 -0
- package/dist/util/gl-util/draw-options/methods.js +38 -0
- package/dist/util/gl-util/draw-options/types.js +15 -0
- package/dist/util/gl-util/uniform-block/manager.js +156 -0
- package/dist/util/gl-util/uniform-block/shader.js +1 -0
- package/dist/util/gl-util/uniform-block/types.js +8 -0
- package/dist/util/heatwavedatamanager/datamanager.js +152 -0
- package/dist/util/heatwavedatamanager/index.js +10 -0
- package/dist/util/heatwavedatamanager/pointcoordinatesdatacalculator.js +122 -0
- package/dist/util/heatwavedatamanager/pointcoordsmeta.js +20 -0
- package/dist/util/index.js +57 -0
- package/dist/util/interpolation/index.js +1 -0
- package/dist/util/interpolation/timetrack/index.js +5 -0
- package/dist/util/interpolation/timetrack/timetrack-interpolator.js +79 -0
- package/dist/util/interpolation/timetrack/web-worker-str.js +183 -0
- package/dist/util/interpolation/timetrack/web-worker.js +48 -0
- package/dist/util/jshelpers/data-filler.js +20 -0
- package/dist/util/jshelpers/equality.js +20 -0
- package/dist/util/jshelpers/index.js +37 -0
- package/dist/util/jshelpers/timefilters.js +32 -0
- package/dist/util/picking/fence.js +46 -0
- package/dist/util/picking/picker-displayer.js +139 -0
- package/dist/util/programs/draw-texture-on-canvas.js +89 -0
- package/dist/util/programs/index.js +17 -0
- package/dist/util/programs/shapesonglobe.js +214 -0
- package/dist/util/programs/supersampletotextures.js +113 -0
- package/dist/util/programs/texturetoglobe.js +182 -0
- package/dist/util/shaderfunctions/geometrytransformations.js +340 -0
- package/dist/util/shaderfunctions/index.js +18 -0
- package/dist/util/shaderfunctions/nodata.js +11 -0
- package/dist/util/shaderfunctions/noisefunctions.js +43 -0
- package/dist/util/surface-line-data/arc-bboxes.js +25 -0
- package/dist/util/surface-line-data/arcs-to-cuts.js +50 -0
- package/dist/util/surface-line-data/cut-arc.js +1 -0
- package/dist/util/surface-line-data/flow.js +28 -0
- package/dist/util/surface-line-data/rbush-manager.js +1 -0
- package/dist/util/surface-line-data/types.js +1 -0
- package/dist/util/surface-line-data/web-worker.js +1 -0
- package/dist/util/webglobe/gldefaultstates.js +7 -0
- package/dist/util/webglobe/index.js +18 -0
- package/dist/util/webglobe/rasteroverlay.js +78 -0
- package/dist/util/webglobjectbuilders.js +388 -0
- package/dist/util/webglobjectbuilders1.js +237 -0
- package/dist/waveparticles/adaptor.js +17 -0
- package/dist/waveparticles/index.js +10 -0
- package/dist/waveparticles/plugin.js +266 -0
- package/dist/wind/imagetovectorfieldandmagnitude.js +35 -0
- package/dist/wind/index.js +14 -0
- package/dist/wind/plugin.js +926 -0
- package/dist/wind/vectorfieldimage.js +25 -0
- package/dist/write-text/attached-text-writer.js +91 -0
- package/dist/write-text/context-text.js +98 -0
- package/dist/write-text/context-text3.js +155 -0
- package/dist/write-text/index.js +5 -0
- package/dist/write-text/writer-plugin.js +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PointOnGlobeProgramCache = void 0;
|
|
4
|
+
const util_1 = require("../../util");
|
|
5
|
+
const totems_1 = require("../totems");
|
|
6
|
+
const geometrytransformations_1 = require("../../util/shaderfunctions/geometrytransformations");
|
|
7
|
+
const programcache_1 = require("../programcache");
|
|
8
|
+
const vs = `#version 300 es
|
|
9
|
+
${totems_1.CameraUniformBlockString}
|
|
10
|
+
${geometrytransformations_1.mercatorXYToGLPosition}
|
|
11
|
+
${geometrytransformations_1.cartesian3DToGLPosition}
|
|
12
|
+
precision highp float;
|
|
13
|
+
precision highp int;
|
|
14
|
+
|
|
15
|
+
uniform int hovered_vertexID; // can be removed
|
|
16
|
+
|
|
17
|
+
in vec3 pos3D;
|
|
18
|
+
in vec2 pos2D;
|
|
19
|
+
in vec4 rgba;
|
|
20
|
+
|
|
21
|
+
uniform float pointSize;
|
|
22
|
+
uniform float hoveredPointSize;
|
|
23
|
+
|
|
24
|
+
flat out highp int vVertexID;
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
out vec4 v_rgba;
|
|
28
|
+
|
|
29
|
+
void main() {
|
|
30
|
+
|
|
31
|
+
if(is3D){
|
|
32
|
+
gl_Position = cartesian3DToGLPosition(pos3D);
|
|
33
|
+
}
|
|
34
|
+
else{
|
|
35
|
+
gl_Position = mercatorXYToGLPosition(pos2D);
|
|
36
|
+
}
|
|
37
|
+
if (hovered_vertexID == gl_VertexID) {
|
|
38
|
+
gl_PointSize = hoveredPointSize;
|
|
39
|
+
} else {
|
|
40
|
+
gl_PointSize = pointSize;
|
|
41
|
+
}
|
|
42
|
+
v_rgba = rgba;
|
|
43
|
+
vVertexID = gl_VertexID;
|
|
44
|
+
}`;
|
|
45
|
+
const fs = `#version 300 es
|
|
46
|
+
precision highp float;
|
|
47
|
+
|
|
48
|
+
uniform float opacity;
|
|
49
|
+
|
|
50
|
+
flat in highp int vVertexID;
|
|
51
|
+
in vec4 v_rgba;
|
|
52
|
+
|
|
53
|
+
layout(location = 0) out vec4 fragColor;
|
|
54
|
+
layout(location = 1) out int vertexID;
|
|
55
|
+
|
|
56
|
+
void main() {
|
|
57
|
+
vertexID = vVertexID;
|
|
58
|
+
fragColor = v_rgba;
|
|
59
|
+
fragColor.a *= opacity;
|
|
60
|
+
}`;
|
|
61
|
+
class PointOnGlobeProgram {
|
|
62
|
+
constructor(globe) {
|
|
63
|
+
this.globe = globe;
|
|
64
|
+
this.gl = globe.gl;
|
|
65
|
+
this.program = (0, util_1.createProgram)(this.gl, vs, fs);
|
|
66
|
+
const { gl, program } = this;
|
|
67
|
+
this.uniforms = {
|
|
68
|
+
opacity: gl.getUniformLocation(program, "opacity"),
|
|
69
|
+
hovered_vertexID: gl.getUniformLocation(program, "hovered_vertexID"),
|
|
70
|
+
hoveredPointSize: gl.getUniformLocation(program, "hoveredPointSize"),
|
|
71
|
+
pointSize: gl.getUniformLocation(program, "pointSize"),
|
|
72
|
+
};
|
|
73
|
+
// eslint-disable-next-line
|
|
74
|
+
{ // assign opacity
|
|
75
|
+
this._lastOpacity = 1.0;
|
|
76
|
+
this._lastPointSize = 2.0;
|
|
77
|
+
this._lastHoveredPointSize = 4.0;
|
|
78
|
+
this._lastHoveredID = -1;
|
|
79
|
+
const currentProgram = gl.getParameter(gl.CURRENT_PROGRAM);
|
|
80
|
+
gl.useProgram(program);
|
|
81
|
+
gl.uniform1f(this.uniforms.opacity, this._lastOpacity);
|
|
82
|
+
gl.uniform1f(this.uniforms.pointSize, this._lastPointSize);
|
|
83
|
+
gl.uniform1f(this.uniforms.hoveredPointSize, this._lastHoveredPointSize);
|
|
84
|
+
gl.uniform1i(this.uniforms.hovered_vertexID, this._lastHoveredID);
|
|
85
|
+
gl.useProgram(currentProgram);
|
|
86
|
+
}
|
|
87
|
+
// eslint-disable-next-line
|
|
88
|
+
{ // assign attribute locations
|
|
89
|
+
gl.bindAttribLocation(program, 0, "pos3D");
|
|
90
|
+
gl.bindAttribLocation(program, 1, "pos2D");
|
|
91
|
+
gl.bindAttribLocation(program, 2, "rgba");
|
|
92
|
+
}
|
|
93
|
+
// eslint-disable-next-line
|
|
94
|
+
{ // arrange camera uniform block
|
|
95
|
+
this.cameraBlockBingingPoint = 0;
|
|
96
|
+
this.cameraBlockTotem = totems_1.CameraUniformBlockTotemCache.get(globe);
|
|
97
|
+
const cameraBlockIndex = gl.getUniformBlockIndex(program, "CameraUniformBlock");
|
|
98
|
+
gl.uniformBlockBinding(program, cameraBlockIndex, this.cameraBlockBingingPoint);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
createVAO(pos3DBuffer, pos2DBuffer, rgbaBuffer) {
|
|
102
|
+
const { gl } = this;
|
|
103
|
+
const vao = gl.createVertexArray();
|
|
104
|
+
gl.bindVertexArray(vao);
|
|
105
|
+
// eslint-disable-next-line
|
|
106
|
+
{
|
|
107
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, pos3DBuffer);
|
|
108
|
+
gl.enableVertexAttribArray(0);
|
|
109
|
+
gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0);
|
|
110
|
+
}
|
|
111
|
+
// eslint-disable-next-line
|
|
112
|
+
{
|
|
113
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, pos2DBuffer);
|
|
114
|
+
gl.enableVertexAttribArray(1);
|
|
115
|
+
gl.vertexAttribPointer(1, 2, gl.FLOAT, false, 0, 0);
|
|
116
|
+
}
|
|
117
|
+
// eslint-disable-next-line
|
|
118
|
+
{
|
|
119
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, rgbaBuffer);
|
|
120
|
+
gl.enableVertexAttribArray(2);
|
|
121
|
+
gl.vertexAttribPointer(2, 4, gl.FLOAT, false, 0, 0);
|
|
122
|
+
}
|
|
123
|
+
gl.bindVertexArray(null);
|
|
124
|
+
gl.bindBuffer(gl.ARRAY_BUFFER, null);
|
|
125
|
+
return vao;
|
|
126
|
+
}
|
|
127
|
+
draw(vao, length, { opacity = 1.0, hoveredID = -1, pointSize = 2.0, hoveredPointSize = 4.0, elementBuffer = null } = {}) {
|
|
128
|
+
if (length === 0 || opacity === 0)
|
|
129
|
+
return;
|
|
130
|
+
const { gl, program, uniforms } = this;
|
|
131
|
+
gl.useProgram(program);
|
|
132
|
+
if (this._lastOpacity !== opacity) {
|
|
133
|
+
gl.uniform1f(uniforms.opacity, opacity);
|
|
134
|
+
this._lastOpacity = opacity;
|
|
135
|
+
}
|
|
136
|
+
if (this._lastPointSize !== pointSize) {
|
|
137
|
+
gl.uniform1f(uniforms.pointSize, pointSize);
|
|
138
|
+
this._lastPointSize = pointSize;
|
|
139
|
+
}
|
|
140
|
+
if (this._lastHoveredPointSize !== hoveredPointSize) {
|
|
141
|
+
gl.uniform1f(uniforms.hoveredPointSize, hoveredPointSize);
|
|
142
|
+
this._lastHoveredPointSize = hoveredPointSize;
|
|
143
|
+
}
|
|
144
|
+
if (this._lastHoveredID !== hoveredID) {
|
|
145
|
+
gl.uniform1i(uniforms.hovered_vertexID, hoveredID);
|
|
146
|
+
this._lastHoveredID = hoveredID;
|
|
147
|
+
}
|
|
148
|
+
gl.bindVertexArray(vao);
|
|
149
|
+
this.cameraBlockTotem.bind(this.cameraBlockBingingPoint);
|
|
150
|
+
if (elementBuffer) {
|
|
151
|
+
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, elementBuffer);
|
|
152
|
+
gl.drawElements(gl.POINTS, length, gl.UNSIGNED_INT, 0);
|
|
153
|
+
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, null);
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
gl.drawArrays(gl.POINTS, 0, length);
|
|
157
|
+
}
|
|
158
|
+
this.cameraBlockTotem.unbind(this.cameraBlockBingingPoint);
|
|
159
|
+
gl.bindVertexArray(null);
|
|
160
|
+
}
|
|
161
|
+
free() {
|
|
162
|
+
if (this._isFreed)
|
|
163
|
+
return;
|
|
164
|
+
const { gl, globe } = this;
|
|
165
|
+
totems_1.CameraUniformBlockTotemCache.release(globe);
|
|
166
|
+
gl.deleteProgram(this.program);
|
|
167
|
+
this._isFreed = true;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
const PointOnGlobeProgramCache = Object.freeze({
|
|
171
|
+
get: (globe) => programcache_1.noRegisterGlobeProgramCache.getProgram(globe, PointOnGlobeProgram),
|
|
172
|
+
release: (globe) => programcache_1.noRegisterGlobeProgramCache.releaseProgram(globe, PointOnGlobeProgram)
|
|
173
|
+
});
|
|
174
|
+
exports.PointOnGlobeProgramCache = PointOnGlobeProgramCache;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module programcache
|
|
4
|
+
* @description This module provides a cache for programs. It is used to avoid creating the same program multiple times.
|
|
5
|
+
*
|
|
6
|
+
* # globeProgramCache
|
|
7
|
+
* Creates and registers programs to the globe. To the 1st object in the draw order.
|
|
8
|
+
* The programs are generally sets sets a global uniform block.
|
|
9
|
+
*
|
|
10
|
+
* # glProgramCache
|
|
11
|
+
* Creates and manages programs that are not related to the globe but to the WebGL context.
|
|
12
|
+
* The programs created by are lightweight absraction of program logic with `constructer(gl)`.
|
|
13
|
+
* These programs are generally wrapped by another class with more functionality.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.noRegisterGlobeProgramCache = exports.glProgramCache = exports.globeProgramCache = void 0;
|
|
17
|
+
const globeProgramCache = (function () {
|
|
18
|
+
const cache = new Map();
|
|
19
|
+
function getProgram(globe, ProgramClass) {
|
|
20
|
+
if (!cache.has(globe)) {
|
|
21
|
+
cache.set(globe, new Map());
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
if (!cache.get(globe).has(ProgramClass)) {
|
|
25
|
+
cache.get(globe).set(ProgramClass, {
|
|
26
|
+
program: new ProgramClass(),
|
|
27
|
+
count: 1
|
|
28
|
+
});
|
|
29
|
+
const firstObject = globe.DrawOrder.GetObj(0);
|
|
30
|
+
globe.api_RegisterPlugin(cache.get(globe).get(ProgramClass).program, firstObject);
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
cache.get(globe).get(ProgramClass).count++;
|
|
34
|
+
}
|
|
35
|
+
return cache.get(globe).get(ProgramClass).program;
|
|
36
|
+
}
|
|
37
|
+
;
|
|
38
|
+
function releaseProgram(globe, ProgramClass) {
|
|
39
|
+
if (cache.has(globe) && cache.get(globe).has(ProgramClass)) {
|
|
40
|
+
if (cache.get(globe).get(ProgramClass).count === 0) {
|
|
41
|
+
throw new Error("The program counter is already 0, cannot release program");
|
|
42
|
+
}
|
|
43
|
+
cache.get(globe).get(ProgramClass).count--;
|
|
44
|
+
if (cache.get(globe).get(ProgramClass).count === 0) {
|
|
45
|
+
globe.api_UnRegisterPlugin(cache.get(globe).get(ProgramClass).program.id); // it calls program.free()
|
|
46
|
+
cache.get(globe).delete(ProgramClass);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
;
|
|
51
|
+
return Object.freeze({
|
|
52
|
+
getProgram,
|
|
53
|
+
releaseProgram
|
|
54
|
+
});
|
|
55
|
+
})();
|
|
56
|
+
exports.globeProgramCache = globeProgramCache;
|
|
57
|
+
const glProgramCache = (function () {
|
|
58
|
+
const cache = new Map();
|
|
59
|
+
function getProgram(gl, ProgramClass) {
|
|
60
|
+
if (!cache.has(gl)) {
|
|
61
|
+
cache.set(gl, new Map());
|
|
62
|
+
}
|
|
63
|
+
;
|
|
64
|
+
if (!cache.get(gl).has(ProgramClass)) {
|
|
65
|
+
cache.get(gl).set(ProgramClass, {
|
|
66
|
+
program: new ProgramClass(gl),
|
|
67
|
+
count: 1
|
|
68
|
+
});
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
cache.get(gl).get(ProgramClass).count++;
|
|
72
|
+
}
|
|
73
|
+
return cache.get(gl).get(ProgramClass).program;
|
|
74
|
+
}
|
|
75
|
+
;
|
|
76
|
+
function releaseProgram(gl, ProgramClass) {
|
|
77
|
+
if (cache.has(gl) && cache.get(gl).has(ProgramClass)) {
|
|
78
|
+
if (cache.get(gl).get(ProgramClass).count === 0) {
|
|
79
|
+
throw new Error("The program counter is already 0, cannot release program");
|
|
80
|
+
}
|
|
81
|
+
cache.get(gl).get(ProgramClass).count--;
|
|
82
|
+
if (cache.get(gl).get(ProgramClass).count === 0) {
|
|
83
|
+
cache.get(gl).get(ProgramClass).program.free();
|
|
84
|
+
cache.get(gl).delete(ProgramClass);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
;
|
|
89
|
+
return Object.freeze({
|
|
90
|
+
getProgram,
|
|
91
|
+
releaseProgram
|
|
92
|
+
});
|
|
93
|
+
})();
|
|
94
|
+
exports.glProgramCache = glProgramCache;
|
|
95
|
+
const noRegisterGlobeProgramCache = (function () {
|
|
96
|
+
const cache = new Map();
|
|
97
|
+
function getProgram(globe, ProgramClass) {
|
|
98
|
+
if (!cache.has(globe)) {
|
|
99
|
+
cache.set(globe, new Map());
|
|
100
|
+
}
|
|
101
|
+
;
|
|
102
|
+
if (!cache.get(globe).has(ProgramClass)) {
|
|
103
|
+
cache.get(globe).set(ProgramClass, {
|
|
104
|
+
program: new ProgramClass(globe),
|
|
105
|
+
count: 1
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
cache.get(globe).get(ProgramClass).count++;
|
|
110
|
+
}
|
|
111
|
+
return cache.get(globe).get(ProgramClass).program;
|
|
112
|
+
}
|
|
113
|
+
;
|
|
114
|
+
function releaseProgram(globe, ProgramClass) {
|
|
115
|
+
if (cache.has(globe) && cache.get(globe).has(ProgramClass)) {
|
|
116
|
+
if (cache.get(globe).get(ProgramClass).count === 0) {
|
|
117
|
+
throw new Error("The program counter is already 0, cannot release program");
|
|
118
|
+
}
|
|
119
|
+
cache.get(globe).get(ProgramClass).count--;
|
|
120
|
+
if (cache.get(globe).get(ProgramClass).count === 0) {
|
|
121
|
+
cache.get(globe).get(ProgramClass).program.free();
|
|
122
|
+
cache.get(globe).delete(ProgramClass);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
return Object.freeze({
|
|
127
|
+
getProgram,
|
|
128
|
+
releaseProgram
|
|
129
|
+
});
|
|
130
|
+
})();
|
|
131
|
+
exports.noRegisterGlobeProgramCache = noRegisterGlobeProgramCache;
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.programCache = void 0;
|
|
37
|
+
const util_1 = require("../../../util");
|
|
38
|
+
const camerauniformblock_1 = __importStar(require("../../totems/camerauniformblock"));
|
|
39
|
+
const programcache_1 = require("../../programcache");
|
|
40
|
+
const CIRCLE_EDGE_COUNT = 360;
|
|
41
|
+
const vertexShader = `#version 300 es ` +
|
|
42
|
+
util_1.shaderfunctions.PI +
|
|
43
|
+
util_1.shaderfunctions.R +
|
|
44
|
+
util_1.shaderfunctions.POLE +
|
|
45
|
+
camerauniformblock_1.CameraUniformBlockString +
|
|
46
|
+
util_1.shaderfunctions.mercatorXYToGLPosition +
|
|
47
|
+
util_1.shaderfunctions.longLatRadToMercator +
|
|
48
|
+
util_1.shaderfunctions.longLatRadToCartesian3D +
|
|
49
|
+
util_1.shaderfunctions.circleLimpFromLongLatRadCenterCartesian3D +
|
|
50
|
+
util_1.shaderfunctions.circleLimpFromLongLatRadCenterMercatorCompass +
|
|
51
|
+
util_1.shaderfunctions.circleLimpFromLongLatRadCenterMercatorRealDistance + `
|
|
52
|
+
|
|
53
|
+
uniform int compass;
|
|
54
|
+
uniform float circle_edge_count;
|
|
55
|
+
|
|
56
|
+
uniform float opacity;
|
|
57
|
+
|
|
58
|
+
in vec2 center;
|
|
59
|
+
in float radius;
|
|
60
|
+
in vec4 color;
|
|
61
|
+
in float flag;
|
|
62
|
+
out vec4 v_color;
|
|
63
|
+
out vec2 v_limp;
|
|
64
|
+
|
|
65
|
+
void main() {
|
|
66
|
+
if( flag == 1.0 || radius == 0.0) return; // flag 1.0 is hide
|
|
67
|
+
v_color = vec4(color.rgb, color.a * opacity);
|
|
68
|
+
if ( gl_VertexID == 270 ) v_color.rgb += 0.2;
|
|
69
|
+
float angle = 3.1415926535897932384626433832795 * 2.0 * (float(gl_VertexID) / circle_edge_count);
|
|
70
|
+
if ( is3D ){
|
|
71
|
+
gl_Position = projection * view * vec4(
|
|
72
|
+
circleLimpFromLongLatRadCenterCartesian3D( center, radius, angle) - translate, 1.0);
|
|
73
|
+
v_limp = vec2(0.0, 0.0);
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
vec2 limp;
|
|
77
|
+
if ( compass == 1 ){
|
|
78
|
+
limp = circleLimpFromLongLatRadCenterMercatorCompass(center, radius, angle);
|
|
79
|
+
} else {
|
|
80
|
+
limp = circleLimpFromLongLatRadCenterMercatorRealDistance(center, radius, angle);
|
|
81
|
+
}
|
|
82
|
+
v_limp = limp;
|
|
83
|
+
gl_Position = mercatorXYToGLPosition(limp);
|
|
84
|
+
|
|
85
|
+
}`;
|
|
86
|
+
const fragmentShader = `#version 300 es
|
|
87
|
+
precision highp float;` +
|
|
88
|
+
util_1.shaderfunctions.POLE + `
|
|
89
|
+
|
|
90
|
+
in vec4 v_color;
|
|
91
|
+
in vec2 v_limp;
|
|
92
|
+
out vec4 outColor;
|
|
93
|
+
void main() {
|
|
94
|
+
if ( v_limp.x < -POLE || v_limp.x > POLE || v_limp.y < -POLE || v_limp.y > POLE ){ discard; }
|
|
95
|
+
outColor = v_color;
|
|
96
|
+
}`;
|
|
97
|
+
class Logic {
|
|
98
|
+
constructor(globe) {
|
|
99
|
+
this.globe = globe;
|
|
100
|
+
this.gl = globe.gl;
|
|
101
|
+
this.program = (0, util_1.createProgram)(this.gl, vertexShader, fragmentShader);
|
|
102
|
+
{ // bind positions so bufferManager can use them
|
|
103
|
+
this.gl.bindAttribLocation(this.program, 0, "center");
|
|
104
|
+
this.gl.bindAttribLocation(this.program, 1, "radius");
|
|
105
|
+
this.gl.bindAttribLocation(this.program, 2, "color");
|
|
106
|
+
this.gl.bindAttribLocation(this.program, 3, "flag");
|
|
107
|
+
}
|
|
108
|
+
this.cameraBlockBindingPoint = 0;
|
|
109
|
+
this.cameraBlockTotem = programcache_1.globeProgramCache.getProgram(globe, camerauniformblock_1.default);
|
|
110
|
+
const cameraBlockIndex = this.gl.getUniformBlockIndex(this.program, "CameraUniformBlock");
|
|
111
|
+
this.gl.uniformBlockBinding(this.program, cameraBlockIndex, this.cameraBlockBindingPoint);
|
|
112
|
+
this._opacityLocation = this.gl.getUniformLocation(this.program, "opacity");
|
|
113
|
+
this._compassLocation = this.gl.getUniformLocation(this.program, "compass");
|
|
114
|
+
this._circleEdgeCountLocation = this.gl.getUniformLocation(this.program, "circle_edge_count");
|
|
115
|
+
this._circleEdgeCount = CIRCLE_EDGE_COUNT;
|
|
116
|
+
this._compassmode = 1;
|
|
117
|
+
this._opacity = 1.0;
|
|
118
|
+
{
|
|
119
|
+
const currentProgram = this.gl.getParameter(this.gl.CURRENT_PROGRAM);
|
|
120
|
+
this.gl.useProgram(this.program);
|
|
121
|
+
this.gl.uniform1i(this._compassLocation, 1);
|
|
122
|
+
this.gl.uniform1f(this._circleEdgeCountLocation, CIRCLE_EDGE_COUNT);
|
|
123
|
+
this.gl.uniform1f(this._opacityLocation, 1.0);
|
|
124
|
+
this.gl.useProgram(currentProgram);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
draw(attrBufferManager, compass, circleEdgeCount, opacity) {
|
|
128
|
+
const { gl, program, cameraBlockTotem, cameraBlockBindingPoint } = this;
|
|
129
|
+
gl.useProgram(program);
|
|
130
|
+
cameraBlockTotem.bind(cameraBlockBindingPoint);
|
|
131
|
+
attrBufferManager.bindCircleVAO();
|
|
132
|
+
if (compass !== this._compassmode) {
|
|
133
|
+
gl.uniform1i(this._compassLocation, compass);
|
|
134
|
+
this._compassmode = compass;
|
|
135
|
+
}
|
|
136
|
+
if (opacity !== this._opacity) {
|
|
137
|
+
gl.uniform1f(this._opacityLocation, opacity);
|
|
138
|
+
this._opacity = opacity;
|
|
139
|
+
}
|
|
140
|
+
if (circleEdgeCount !== this._circleEdgeCount) {
|
|
141
|
+
gl.uniform1f(this._circleEdgeCountLocation, circleEdgeCount);
|
|
142
|
+
this._circleEdgeCount = circleEdgeCount;
|
|
143
|
+
}
|
|
144
|
+
gl.drawArraysInstanced(gl.LINE_LOOP, 0, circleEdgeCount, attrBufferManager.length);
|
|
145
|
+
gl.bindVertexArray(null);
|
|
146
|
+
cameraBlockTotem.unbind(cameraBlockBindingPoint);
|
|
147
|
+
}
|
|
148
|
+
free() {
|
|
149
|
+
this.gl.deleteProgram(this.program);
|
|
150
|
+
programcache_1.globeProgramCache.releaseProgram(this.globe, camerauniformblock_1.default);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
exports.programCache = Object.freeze({
|
|
154
|
+
getProgram: (globe) => { return programcache_1.noRegisterGlobeProgramCache.getProgram(globe, Logic); },
|
|
155
|
+
releaseProgram: (globe) => { programcache_1.noRegisterGlobeProgramCache.releaseProgram(globe, Logic); }
|
|
156
|
+
});
|