Skip to content

Commit c1579a5

Browse files
committed
Ability to change atmosphere color
Issue: CesiumGS#3439 Change the atmoshphere color
1 parent f503c1a commit c1579a5

File tree

3 files changed

+53
-21
lines changed

3 files changed

+53
-21
lines changed

Source/Scene/SkyAtmosphere.js

+34-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*global define*/
22
define([
33
'../Core/Cartesian3',
4+
'../Core/Color',
45
'../Core/defaultValue',
56
'../Core/defined',
67
'../Core/defineProperties',
@@ -22,6 +23,7 @@ define([
2223
'./SceneMode'
2324
], function(
2425
Cartesian3,
26+
Color,
2527
defaultValue,
2628
defined,
2729
defineProperties,
@@ -54,15 +56,17 @@ define([
5456
* @alias SkyAtmosphere
5557
* @constructor
5658
*
57-
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid that the atmosphere is drawn around.
59+
* @param {Object} [options] Object with the following properties:
60+
* @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid that the atmosphere is drawn around.
61+
* @param {Color} [options.color=Color(1.0, 1.0, 1.0, 1.0)] The color of atmosphere.
5862
*
5963
* @example
6064
* scene.skyAtmosphere = new Cesium.SkyAtmosphere();
6165
*
6266
* @see Scene.skyAtmosphere
6367
*/
64-
function SkyAtmosphere(ellipsoid) {
65-
ellipsoid = defaultValue(ellipsoid, Ellipsoid.WGS84);
68+
function SkyAtmosphere(options) {
69+
options = defaultValue(options, defaultValue.EMPTY_OBJECT);
6670

6771
/**
6872
* Determines if the atmosphere is shown.
@@ -71,18 +75,17 @@ define([
7175
* @default true
7276
*/
7377
this.show = true;
74-
75-
this._ellipsoid = ellipsoid;
78+
this._ellipsoid = defaultValue(options.ellipsoid, Ellipsoid.WGS84);
79+
this._color = defaultValue(options.color, new Color());
7680
this._command = new DrawCommand({
7781
owner : this
7882
});
7983
this._spSkyFromSpace = undefined;
8084
this._spSkyFromAtmosphere = undefined;
81-
8285
this._fCameraHeight = undefined;
8386
this._fCameraHeight2 = undefined;
84-
this._outerRadius = Cartesian3.maximumComponent(Cartesian3.multiplyByScalar(ellipsoid.radii, 1.025, new Cartesian3()));
85-
var innerRadius = ellipsoid.maximumRadius;
87+
this._outerRadius = Cartesian3.maximumComponent(Cartesian3.multiplyByScalar(this._ellipsoid.radii, 1.025, new Cartesian3()));
88+
var innerRadius = this._ellipsoid.maximumRadius;
8689
var rayleighScaleDepth = 0.25;
8790

8891
var that = this;
@@ -111,6 +114,15 @@ define([
111114
},
112115
fScaleOverScaleDepth : function() {
113116
return (1.0 / (that._outerRadius - innerRadius)) / rayleighScaleDepth;
117+
},
118+
fRedColor : function() {
119+
return that._color.red;
120+
},
121+
fGreenColor : function() {
122+
return that._color.green;
123+
},
124+
fBlueColor : function() {
125+
return that._color.blue;
114126
}
115127
};
116128
}
@@ -127,7 +139,19 @@ define([
127139
get : function() {
128140
return this._ellipsoid;
129141
}
130-
}
142+
},
143+
/**
144+
* Gets the color of the atmosphere.
145+
* @memberof SkyAtmosphere.prototype
146+
*
147+
* @type {Color}
148+
* @readonly
149+
*/
150+
color : {
151+
get : function() {
152+
return this._color;
153+
}
154+
}
131155
});
132156

133157
/**
@@ -239,7 +263,7 @@ define([
239263
*
240264
* @example
241265
* skyAtmosphere = skyAtmosphere && skyAtmosphere.destroy();
242-
*
266+
*
243267
* @see SkyAtmosphere#isDestroyed
244268
*/
245269
SkyAtmosphere.prototype.destroy = function() {

Source/Shaders/SkyAtmosphereVS.glsl

+11-10
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* @license
33
* Copyright (c) 2000-2005, Sean O'Neil (s_p_oneil@hotmail.com)
44
* All rights reserved.
5-
*
5+
*
66
* Redistribution and use in source and binary forms, with or without
77
* modification, are permitted provided that the following conditions
88
* are met:
9-
*
9+
*
1010
* * Redistributions of source code must retain the above copyright notice,
1111
* this list of conditions and the following disclaimer.
1212
* * Redistributions in binary form must reproduce the above copyright notice,
@@ -15,7 +15,7 @@
1515
* * Neither the name of the project nor the names of its contributors may be
1616
* used to endorse or promote products derived from this software without
1717
* specific prior written permission.
18-
*
18+
*
1919
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2020
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2121
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@@ -29,10 +29,10 @@
2929
*
3030
* Modifications made by Analytical Graphics, Inc.
3131
*/
32-
32+
3333
// Code: http://sponeil.net/
3434
// GPU Gems 2 Article: http://http.developer.nvidia.com/GPUGems2/gpugems2_chapter16.html
35-
35+
3636
attribute vec4 position;
3737

3838
uniform float fCameraHeight;
@@ -43,6 +43,9 @@ uniform float fInnerRadius; // The inner (planetary) radius
4343
uniform float fScale; // 1 / (fOuterRadius - fInnerRadius)
4444
uniform float fScaleDepth; // The scale depth (i.e. the altitude at which the atmosphere's average density is found)
4545
uniform float fScaleOverScaleDepth; // fScale / fScaleDepth
46+
uniform float fRedColor; // The atmosphere color's red component
47+
uniform float fGreenColor; // The atmosphere color's green component
48+
uniform float fBlueColor; // The atmosphere color's blue component
4649

4750
const float Kr = 0.0025;
4851
const float fKr4PI = Kr * 4.0 * czm_pi;
@@ -51,12 +54,9 @@ const float fKm4PI = Km * 4.0 * czm_pi;
5154
const float ESun = 15.0;
5255
const float fKmESun = Km * ESun;
5356
const float fKrESun = Kr * ESun;
54-
const vec3 v3InvWavelength = vec3(
55-
5.60204474633241, // Red = 1.0 / Math.pow(0.650, 4.0)
56-
9.473284437923038, // Green = 1.0 / Math.pow(0.570, 4.0)
57-
19.643802610477206); // Blue = 1.0 / Math.pow(0.475, 4.0)
57+
5858
const float rayleighScaleDepth = 0.25;
59-
59+
6060
const int nSamples = 2;
6161
const float fSamples = 2.0;
6262

@@ -105,6 +105,7 @@ void main(void)
105105
float fScaledLength = fSampleLength * fScale;
106106
vec3 v3SampleRay = v3Ray * fSampleLength;
107107
vec3 v3SamplePoint = v3Start + v3SampleRay * 0.5;
108+
vec3 v3InvWavelength = vec3(fRedColor / pow(0.650, 4.0), fGreenColor / pow(0.570, 4.0), fBlueColor / pow(0.475, 4.0));
108109

109110
// Now loop through the sample rays
110111
vec3 v3FrontColor = vec3(0.0, 0.0, 0.0);

Specs/Scene/SkyAtmosphereSpec.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
defineSuite([
33
'Scene/SkyAtmosphere',
44
'Core/Cartesian3',
5+
'Core/Color',
56
'Core/Ellipsoid',
67
'Renderer/ClearCommand',
78
'Scene/SceneMode',
@@ -11,6 +12,7 @@ defineSuite([
1112
], function(
1213
SkyAtmosphere,
1314
Cartesian3,
15+
Color,
1416
Ellipsoid,
1517
ClearCommand,
1618
SceneMode,
@@ -130,10 +132,15 @@ defineSuite([
130132
});
131133

132134
it('gets ellipsoid', function() {
133-
var s = new SkyAtmosphere(Ellipsoid.UNIT_SPHERE);
135+
var s = new SkyAtmosphere({ellipsoid: Ellipsoid.UNIT_SPHERE});
134136
expect(s.ellipsoid).toEqual(Ellipsoid.UNIT_SPHERE);
135137
});
136138

139+
it('gets color', function() {
140+
var s = new SkyAtmosphere({color: new Color(10,0,0)});
141+
expect(s.color).toEqual(new Color(10,0,0));
142+
});
143+
137144
it('isDestroyed', function() {
138145
var s = new SkyAtmosphere();
139146
expect(s.isDestroyed()).toEqual(false);

0 commit comments

Comments
 (0)