1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- ; (function (Cesium) {
- checkSkyScenery(Cesium);
- function Skyline(viewer, opt) {
- this.stages = viewer.scene.postProcessStages;
- let edgeDetection = Cesium.PostProcessStageLibrary.createEdgeDetectionStage();
- let postProccessStage = new Cesium.PostProcessStage({
- //此后处理阶段的唯一名称,供组合中其他阶段参考,如果未提供名称,将自动生成GUID
- // name:name,
- //unform着色器对象 textureScale
- fragmentShader: 'uniform sampler2D colorTexture;' +
- 'uniform sampler2D depthTexture;' +
- 'varying vec2 v_textureCoordinates;' +
- 'uniform vec4 customColor;' +
- 'void main(void)' +
- '{' +
- 'float depth = czm_readDepth(depthTexture, v_textureCoordinates);' +
- 'vec4 color = texture2D(colorTexture, v_textureCoordinates);' +
- 'if(depth<1.0 - 0.000001){' +
- 'gl_FragColor = color;' +
- '}' +
- 'else{' +
- 'gl_FragColor = vec4(1.0,0.0,0.0,1.0);' +
- // 'gl_FragColor = vec4(customColor.rgb, customColor.a);' +
- '}' +
- '}',
- // uniforms: {
- // customColor: () => {
- // return Cesium.Color.fromCssColorString("#ffeb3b")
- // }
- // }
- })
- //PostProcessStage:要使用的片段着色器。默认sampler2D制服是colorTexture和depthTexture。
- let postProccesStage_1 = new Cesium.PostProcessStage({
- // name:obj.name+'_1',
- fragmentShader: 'uniform sampler2D colorTexture;' +
- 'uniform sampler2D redTexture;' +
- 'uniform sampler2D silhouetteTexture;' +
- 'varying vec2 v_textureCoordinates;' +
- 'void main(void)' +
- '{' +
- 'vec4 redcolor=texture2D(redTexture, v_textureCoordinates);' +
- 'vec4 silhouetteColor = texture2D(silhouetteTexture, v_textureCoordinates);' +
- 'vec4 color = texture2D(colorTexture, v_textureCoordinates);' +
- 'if(redcolor.r == 1.0){' +
- 'gl_FragColor = mix(color, vec4(5.0,0.0,0.0,1.0), silhouetteColor.a);' +
- '}' +
- 'else{' +
- 'gl_FragColor = color;' +
- '}' +
- '}',
- //uniform着色器对象
- uniforms: {
- redTexture: postProccessStage.name,
- silhouetteTexture: edgeDetection.name
- }
- });
- //如果inputPreviousStageTexture 是 true,则每个阶段输入是场景渲染到的输出纹理或之前执行阶段的输出纹理
- //如果inputPreviousStageTexture是false,则合成中每个阶段的输入纹理都是相同的
- this.skylineObj = new Cesium.PostProcessStageComposite({
- //PostProcessStage要按顺序执行 的 s 或组合的数组。
- stages: [edgeDetection, postProccessStage, postProccesStage_1],
- //是否执行每个后处理阶段,其中一个阶段的输入是前一个阶段的输出。否则每个包含阶段的输入是组合之前执行的阶段的输出
- inputPreviousStageTexture: false,
- //后处理阶段制服的别名
- uniforms: edgeDetection.uniforms
- })
- this.stages.add(this.skylineObj);
- this._enabled = Cesium.defaultValue(opt.enabled, true);
- this._color = Cesium.defaultValue(opt.color, "#FF0000");
- this.skylineObj.uniforms.color = Cesium.Color.fromCssColorString(this._color);
- // this.skylineObj.enabled = Cesium.defaultValue(opt.enabled, true);
- Object.defineProperties(this, {
- // 是否开启
- enabled: {
- get: function () {
- return this._enabled
- },
- set: function (e) {
- this._enabled = e
- this.skylineObj.enabled = e
- }
- },
- color: {
- get: function () {
- return this._color
- },
- set: function (e) {
- this._color = e
- this.skylineObj.uniforms.color = Cesium.Color.fromCssColorString(e);
- }
- }
- })
- }
- Skyline.prototype.remove = function () {
- this.stages.remove(this.skylineObj);
- }
- Cesium.Skyline = Skyline;
- }(SkyScenery));
|