41 KiB
Coding Guide
CesiumJS is one of the largest JavaScript codebases in the world. Since its start, we have maintained a high standard for code quality, which has made the codebase easier to work with for both new and experienced contributors. We hope you find the codebase to be clean and consistent.
In addition to describing typical coding conventions, this guide also covers best practices for design, maintainability, and performance. It is the cumulative advice of many developers after years of production development, research, and experimentation.
This guide applies to CesiumJS and all parts of the Cesium ecosystem written in JavaScript.
🎨 The color palette icon indicates a design tip.
🏠 The house icon indicates a maintainability tip. The whole guide is, of course, about writing maintainable code.
🚤 The speedboat indicates a performance tip.
To some extent, this guide can be summarized as make new code similar to existing code.
- Coding Guide
Naming
- Directory names are
PascalCase, e.g.,Source/Scene. - Constructor functions are
PascalCase, e.g.,Cartesian3. - Functions are
camelCase, e.g.,binarySearch(),Cartesian3.equalsEpsilon(). - Files end in
.jsand have the same name as the JavaScript identifier, e.g.,Cartesian3.jsandbinarySearch.js. - Variables, including class properties, are
camelCase, e.g.,
this.minimumPixelSize = 1.0; // Class property
const bufferViews = gltf.bufferViews; // Local variable
- Private (by convention) members start with an underscore, e.g.,
this._canvas = canvas;
- Constants are in uppercase with underscores, e.g.,
Cartesian3.UNIT_X = Object.freeze(new Cartesian3(1.0, 0.0, 0.0));
- Avoid abbreviations in public identifiers unless the full name is prohibitively cumbersome and has a widely accepted abbreviation, e.g.,
Cartesian3.maximumComponent(); // Not Cartesian3.maxComponent()
Ellipsoid.WGS84; // Not Ellipsoid.WORLD_GEODETIC_SYSTEM_1984
- If you do use abbreviations, use the recommended casing and do not capitalize all letters in the abbreviation. e.g.
new UrlTemplateImageryProvider(); // Not URLTemplateImageryProvider
resource.url; // Not resource.URL
- Prefer short and descriptive names for local variables, e.g., if a function has only one length variable,
const primitivesLength = primitives.length;
is better written as
const length = primitives.length;
- When accessing an outer-scope's
thisin a closure, name the variablethat, e.g.,
const that = this;
this._showTouch = createCommand(function () {
that._touch = true;
});
A few more naming conventions are introduced below along with their design pattern, e.g., options parameters, result parameters and scratch variables, and from constructors.
Formatting
- We use prettier to automatically re-format all JS code at commit time, so all of the work is done for you. Code is automatically reformatted when you commit.
- For HTML code, keep the existing style. Use double quotes.
- Text files, end with a newline to minimize the noise in diffs.
Spelling
- We have a basic setup for
cspellto spellcheck our files. This is currently not enforced but recommended to use and check while programming. This is especially true for JSDoc comments that well end up in our documentation or Readme files- Run
npm run cspellto check all files - Run
npx cspell -c .vscode/cspell.json [file path]to check a specific file
- Run
- If you are using VSCode you can use the Code Spell Checker extension to highlight misspelled words and add them to our wordlist if they are valid.
- Using cspell is optional while we build up the wordlist but may eventually be required as part of our git hooks and CI. See this issue for an active status on that.
Linting
For syntax and style guidelines, we use the ESLint recommended settings as a base and extend it with additional rules (see the list of all rules) via a shared config Node module, eslint-config-cesium. This package is maintained as a part of the Cesium repository and is also used throughout the Cesium ecosystem. For an up to date list of which rules are enabled, look in index.js, browser.js, and node.js. Below are listed some specific rules to keep in mind
General rules:
- block-scoped-var
- no-alert
- no-floating-decimal
- no-implicit-globals
- no-loop-func
- no-use-before-define to prevent using variables and functions before they are defined.
- no-else-return
- no-undef-init
- no-sequences
- no-unused-expressions
- no-trailing-spaces
- no-lonely-if
- quotes to enforce using single-quotes
Node-specific rules:
Disabling Rules with Inline Comments
- When disabling linting for one line, use
//eslint-disable-next-line:
function exit(warningMessage) {
//eslint-disable-next-line no-alert
window.alert("Cannot exit: " + warningMessage);
}
- When disabling linting for blocks of code, place
eslint-disablecomments on new lines and as close to the associated code as possible:
/*eslint-disable no-empty*/
try {
lineNumber = parseInt(stack.substring(lineStart + 1, lineEnd1), 10);
} catch (ex) {}
/*eslint-enable no-empty*/
Units
- Cesium uses SI units:
- meters for distances
- radians for angles
- seconds for time durations
- If a function has a parameter with a non-standard unit, such as degrees, put the unit in the function name, e.g.,
Cartesian3.fromDegrees(); // Not Cartesin3.fromAngle()
Basic Code Construction
- Cesium uses JavaScript's strict mode so each module (file) contains
"use strict";
- 🚤 To avoid type coercion (implicit type conversion), test for equality with
===and!==, e.g.,
const i = 1;
if (i === 1) {
// ...
}
if (i !== 1) {
// ...
}
- To aid the human reader, append
.0to whole numbers intended to be floating-point values, e.g., unlessfis an integer,
const f = 1;
is better written as
const f = 1.0;
- Declare variables where they are first used. For example,
let i;
let m;
const models = [
/* ... */
];
const length = models.length;
for (i = 0; i < length; ++i) {
m = models[i];
// Use m
}
is better written as
const models = [
/* ... */
];
const length = models.length;
for (let i = 0; i < length; ++i) {
const m = models[i];
// Use m
}
letandconstvariables have block-level scope. Do not rely on variable hoisting, i.e., using a variable before it is declared, e.g.,
console.log(i); // i is undefined here. Never use a variable before it is declared.
let i = 0.0;
-
A
constvariable is preferred when a value is not updated. This ensures immutability. -
🚤 Avoid redundant nested property access. This
scene.environmentState.isSkyAtmosphereVisible = true;
scene.environmentState.isSunVisible = true;
scene.environmentState.isMoonVisible = false;
is better written as
const environmentState = scene.environmentState;
environmentState.isSkyAtmosphereVisible = true;
environmentState.isSunVisible = true;
environmentState.isMoonVisible = false;
- Do not create a local variable that is used only once unless it significantly improves readability, e.g.,
function radiiEquals(left, right) {
const leftRadius = left.radius;
const rightRadius = right.radius;
return leftRadius === rightRadius;
}
is better written as
function radiiEquals(left, right) {
return left.radius === right.radius;
}
- Use
undefinedinstead ofnull. - Test if a variable is defined using Cesium's
definedfunction. It checks specifically forundefinedandnullvalues allowing falsy values to be defined, e.g.,
defined(undefined); // False
defined(null); // False
defined({}); // True
defined(""); // True
defined(0); // True
- Use
Object.freezefunction to create enums, e.g.,
const ModelAnimationState = {
STOPPED: 0,
ANIMATING: 1,
};
return Object.freeze(ModelAnimationState);
- Use descriptive comments for non-obvious code, e.g.,
byteOffset += sizeOfUint32; // Add 4 to byteOffset
is better written as
byteOffset += sizeOfUint32; // Skip length field
TODOcomments need to be removed or addressed before the code is merged into main. Used sparingly,PERFORMANCE_IDEA, can be handy later when profiling.- Remove commented out code before merging into main.
- Modern language features may provide handy shortcuts and cleaner syntax, but they should be used with consideration for their performance implications, especially in code that is invoked per-frame.
Functions
- 🎨 Functions should be cohesive; they should only do one task.
- Statements in a function should be at a similar level of abstraction. If a code block is much lower level than the rest of the statements, it is a good candidate to move to a helper function, e.g.,
Cesium3DTileset.prototype.update = function (frameState) {
const tiles = this._processingQueue;
const length = tiles.length;
for (let i = length - 1; i >= 0; --i) {
tiles[i].process(this, frameState);
}
selectTiles(this, frameState);
updateTiles(this, frameState);
};
is better written as
Cesium3DTileset.prototype.update = function (frameState) {
processTiles(this, frameState);
selectTiles(this, frameState);
updateTiles(this, frameState);
};
function processTiles(tileset, frameState) {
const tiles = tileset._processingQueue;
const length = tiles.length;
for (let i = length - 1; i >= 0; --i) {
tiles[i].process(tileset, frameState);
}
}
- Do not use an unnecessary
elseblock at the end of a function, e.g.,
function getTransform(node) {
if (defined(node.matrix)) {
return Matrix4.fromArray(node.matrix);
} else {
return Matrix4.fromTranslationQuaternionRotationScale(
node.translation,
node.rotation,
node.scale,
);
}
}
is better written as
function getTransform(node) {
if (defined(node.matrix)) {
return Matrix4.fromArray(node.matrix);
}
return Matrix4.fromTranslationQuaternionRotationScale(
node.translation,
node.rotation,
node.scale,
);
}
- 🚤 Smaller functions are more likely to be optimized by JavaScript engines. Consider this for code that is likely to be a hot spot.
options Parameters
🎨 Many Cesium functions take an options parameter to support optional parameters, self-documenting code, and forward compatibility. For example, consider:
const sphere = new SphereGeometry(10.0, 32, 16, VertexFormat.POSITION_ONLY);
It is not clear what the numeric values represent, and the caller needs to know the order of parameters. If this took an options parameter, it would look like this:
const sphere = new SphereGeometry({
radius: 10.0,
stackPartitions: 32,
slicePartitions: 16,
vertexFormat: VertexFormat.POSITION_ONLY,
});
- 🚤 Using
{ /* ... */ }creates an object literal, which is a memory allocation. Avoid designing functions that use anoptionsparameter if the function is likely to be a hot spot; otherwise, callers will have to use a scratch variable (see below) for performance. Constructor functions for non-math classes are good candidates foroptionsparameters since Cesium avoids constructing objects in hot spots. For example,
const p = new Cartesian3({
x: 1.0,
y: 2.0,
z: 3.0,
});
is a bad design for the Cartesian3 constructor function since its performance is not as good as that of
const p = new Cartesian3(1.0, 2.0, 3.0);
Default Parameter Values
If a sensible default exists for a function parameter or class property, don't require the user to provide it. Use the nullish coalescing operator ?? to assign a default value. For example, height defaults to zero in Cartesian3.fromRadians:
Cartesian3.fromRadians = function (longitude, latitude, height) {
height = height ?? 0.0;
// ...
};
- 🚤
??operator can also be used with a memory allocations in the right hand side, as it will be allocated only if the left hand side is eithernullorundefined, and therefore has no negative impact on performances, e.g.,
this._mapProjection = options.mapProjection ?? new GeographicProjection();
- If an
optionsparameter is optional and never modified afterwards, useFrozen.EMPTY_OBJECTorFrozen.EMPTY_ARRAY, this could prevent from unnecessary memory allocations in code critical path, e.g.,
function BaseLayerPickerViewModel(options) {
options = options ?? Frozen.EMPTY_OBJECT;
const globe = options.globe;
const imageryProviderViewModels =
options.imageryProviderViewModels ?? Frozen.EMPTY_ARRAY;
// ...
}
Some common sensible defaults are
height:0.0ellipsoid:Ellipsoid.WGS84show:true
Throwing Exceptions
Use the functions of Cesium's Check class to throw a DeveloperError when the user has a coding error. The most common errors are parameters that are missing, have the wrong type or are out of range.
- For example, to check that a parameter is defined and is an object:
Cartesian3.maximumComponent = function (cartesian) {
//>>includeStart('debug', pragmas.debug);
Check.typeOf.object("cartesian", cartesian);
//>>includeEnd('debug');
return Math.max(cartesian.x, cartesian.y, cartesian.z);
};
- For more complicated parameter checks, manually check the parameter and then throw a
DeveloperError. Example:
Cartesian3.unpackArray = function (array, result) {
//>>includeStart('debug', pragmas.debug);
Check.defined("array", array);
Check.typeOf.number.greaterThanOrEquals("array.length", array.length, 3);
if (array.length % 3 !== 0) {
throw new DeveloperError("array length must be a multiple of 3.");
}
//>>includeEnd('debug');
// ...
};
- To check for
DeveloperError, surround code inincludeStart/includeEndcomments, as shown above, so developer error checks can be optimized out of release builds. Do not include required side effects insideincludeStart/includeEnd, e.g.,
Cartesian3.maximumComponent = function (cartesian) {
//>>includeStart('debug', pragmas.debug);
const c = cartesian;
Check.typeOf.object("cartesian", cartesian);
//>>includeEnd('debug');
// Works in debug. Fails in release since c is optimized out!
return Math.max(c.x, c.y, c.z);
};
- Throw Cesium's
RuntimeErrorfor an error that will not be known until runtime. Unlike developer errors, runtime error checks are not optimized out of release builds.
if (typeof WebGLRenderingContext === "undefined") {
throw new RuntimeError("The browser does not support WebGL.");
}
- 🎨 Exceptions are exceptional. Avoid throwing exceptions, e.g., if a polyline is only provided one position, instead of two or more, instead of throwing an exception just don't render it.
result Parameters and Scratch Variables
🚤 In JavaScript, user-defined classes such as Cartesian3 are reference types and are therefore allocated on the heap. Frequently allocating these types causes a significant performance problem because it creates GC pressure, which causes the Garbage Collector to run longer and more frequently.
Cesium uses required result parameters to avoid implicit memory allocation. For example,
const sum = Cartesian3.add(v0, v1);
would have to implicitly allocate a new Cartesian3 object for the returned sum. Instead, Cartesian3.add requires a result parameter:
const result = new Cartesian3();
const sum = Cartesian3.add(v0, v1, result); // Result and sum reference the same object
This makes allocations explicit to the caller, which allows the caller to, for example, reuse the result object in a file-scoped scratch variable:
const scratchDistance = new Cartesian3();
Cartesian3.distance = function (left, right) {
Cartesian3.subtract(left, right, scratchDistance);
return Cartesian3.magnitude(scratchDistance);
};
The code is not as clean, but the performance improvement is often dramatic.
As described below, from constructors also use optional result parameters.
Because result parameters aren't always required or returned, don't strictly rely on the result parameter you passed in to be modified. For example:
Cartesian3.add(v0, v1, result);
Cartesian3.add(result, v2, result);
is better written as
result = Cartesian3.add(v0, v1, result);
result = Cartesian3.add(result, v2, result);
Classes
- 🎨 Classes should be cohesive. A class should represent one abstraction.
- 🎨 Classes should be loosely coupled. Two classes should not be entangled and rely on each other's implementation details; they should communicate through well-defined interfaces.
Constructor Functions
- Create a class by creating a constructor function:
function Cartesian3(x, y, z) {
this.x = x ?? 0.0;
this.y = y ?? 0.0;
this.z = z ?? 0.0;
}
- Create an instance of a class (an object) by calling the constructor function with
new:
const p = new Cartesian3(1.0, 2.0, 3.0);
- 🚤 Assign to all the property members of a class in the constructor function. This allows JavaScript engines to use a hidden class and avoid entering dictionary mode. Assign
undefinedif no initial value makes sense. Do not add properties to an object, e.g.,
const p = new Cartesian3(1.0, 2.0, 3.0);
p.w = 4.0; // Adds the w property to p, slows down property access since the object enters dictionary mode
- 🚤 For the same reason, do not change the type of a property, e.g., assign a string to a number, e.g.,
const p = new Cartesian3(1.0, 2.0, 3.0);
p.x = "Cesium"; // Changes x to a string, slows down property access
-
In a constructor function, consider properties as write once; do not write to them or read them multiple times. Create a local variable if they need to be read. For example:
Instead of
this._x = 2; this._xSquared = this._x * this._x;prefer
const x = 2; this._x = x; this._xSquared = x * x;
from Constructors
🎨 Constructor functions should take the basic components of the class as parameters. For example, Cartesian3 takes x, y, and z.
It is often convenient to construct objects from other parameters. Since JavaScript doesn't have function overloading, Cesium uses static
functions prefixed with from to construct objects in this way. For example:
const p = Cartesian3.fromRadians(-2.007, 0.645); // Construct a Cartesian3 object using longitude and latitude
These are implemented with an optional result parameter, which allows callers to pass in a scratch variable:
Cartesian3.fromRadians = function (longitude, latitude, height, result) {
// Compute x, y, z using longitude, latitude, height
if (!defined(result)) {
result = new Cartesian3();
}
result.x = x;
result.y = y;
result.z = z;
return result;
};
Since calling a from constructor should not require an existing object, the function is assigned to Cartesian3.fromRadians, not Cartesian3.prototype.fromRadians.
to Functions
Functions that start with to return a new type of object, e.g.,
Cartesian3.prototype.toString = function () {
return `(${this.x}, ${this.y}, ${this.z})`;
};
Use Prototype Functions for Fundamental Classes Sparingly
🎨 Fundamental math classes such as Cartesian3, Quaternion, Matrix4, and JulianDate use prototype functions sparingly. For example, Cartesian3 does not have a prototype add function like this:
const v2 = v0.add(v1, result);
Instead, this is written as
const v2 = Cartesian3.add(v0, v1, result);
The only exceptions are
cloneequalsequalsEpsilontoString
These prototype functions generally delegate to the non-prototype (static) version, e.g.,
Cartesian3.equals = function (left, right) {
return (
left === right ||
(defined(left) &&
defined(right) &&
left.x === right.x &&
left.y === right.y &&
left.z === right.z)
);
};
Cartesian3.prototype.equals = function (right) {
return Cartesian3.equals(this, right);
};
The prototype versions have the benefit of being able to be used polymorphically.
Static Constants
To create a static constant related to a class, use Object.freeze:
Cartesian3.ZERO = Object.freeze(new Cartesian3(0.0, 0.0, 0.0));
Private Functions
Like private properties, private functions start with an _. In practice, these are rarely used. Instead, for better encapsulation, a file-scoped function that takes this as the first parameter is used. For example,
Cesium3DTileset.prototype.update = function(frameState) {
this._processTiles(frameState);
// ...
};
Cesium3DTileset.prototype._processTiles(tileset, frameState) {
const tiles = this._processingQueue;
const length = tiles.length;
for (let i = length - 1; i >= 0; --i) {
tiles[i].process(tileset, frameState);
}
}
is better written as
Cesium3DTileset.prototype.update = function (frameState) {
processTiles(this, frameState);
// ...
};
function processTiles(tileset, frameState) {
const tiles = tileset._processingQueue;
const length = tiles.length;
for (let i = length - 1; i >= 0; --i) {
tiles[i].process(tileset, frameState);
}
}
Property Getter/Setters
Public properties that can be read or written without extra processing can simply be assigned in the constructor function, e.g.,
function Model(options) {
this.show = options.show ?? true;
}
Read-only properties can be created with a private property and a getter using Object.defineProperties function, e.g.,
function Cesium3DTileset(options) {
this._url = options.url;
}
Object.defineProperties(Cesium3DTileset.prototype, {
url: {
get: function () {
return this._url;
},
},
});
Getters can perform any needed computation to return the property, but the performance expectation is that they execute quickly.
Setters can also perform computation before assigning to a private property, set a flag to delay computation, or both, for example:
Object.defineProperties(UniformState.prototype, {
viewport: {
get: function () {
return this._viewport;
},
set: function (viewport) {
if (!BoundingRectangle.equals(viewport, this._viewport)) {
BoundingRectangle.clone(viewport, this._viewport);
const v = this._viewport;
const vc = this._viewportCartesian4;
vc.x = v.x;
vc.y = v.y;
vc.z = v.width;
vc.w = v.height;
this._viewportDirty = true;
}
},
},
});
- 🚤 Calling the getter/setter function is slower than direct property access so functions internal to a class can use the private property directly when appropriate.
Shadowed Property
When the overhead of getter/setter functions is prohibitive or reference-type semantics are desired, e.g., the ability to pass a property as a result parameter so its properties can be modified, consider combining a public property with a private shadowed property, e.g.,
function Model(options) {
this.modelMatrix = Matrix4.clone(options.modelMatrix ?? Matrix4.IDENTITY);
this._modelMatrix = Matrix4.clone(this.modelMatrix);
}
Model.prototype.update = function (frameState) {
if (!Matrix4.equals(this._modelMatrix, this.modelMatrix)) {
// clone() is a deep copy. Not this._modelMatrix = this._modelMatrix
Matrix4.clone(this.modelMatrix, this._modelMatrix);
// Do slow operations that need to happen when the model matrix changes
}
};
Put the Constructor Function at the Top of the File
It is convenient for the constructor function to be at the top of the file even if it requires that helper functions rely on hoisting, for example, Cesium3DTileset.js,
function loadTileset(tileset, tilesJson, done) {
// ...
}
function Cesium3DTileset(options) {
// ...
loadTileset(this, options.url, function (data) {
// ...
});
}
is better written as
function Cesium3DTileset(options) {
// ...
loadTileset(this, options.url, function (data) {
// ...
});
}
function loadTileset(tileset, tilesJson, done) {
// ...
}
even though it relies on implicitly hoisting the loadTileset function to the top of the file.
Design
- 🏠 Make a class or function part of the Cesium API only if it will likely be useful to end users; avoid making an implementation detail part of the public API. When something is public, it makes the Cesium API bigger and harder to learn, is harder to change later, and requires more documentation work.
- 🎨 Put new classes and functions in the right part of the Cesium stack (directory). From the bottom up:
Source/Core- Number crunching. Pure math such asCartesian3. Pure geometry such asCylinderGeometry. Fundamental algorithms such asmergeSort. Request helper functions such asloadArrayBuffer.Source/Renderer- WebGL abstractions such asShaderProgramand WebGL-specific utilities such asShaderCache. Identifiers in this directory are not part of the public Cesium API.Source/Scene- The graphics engine, including primitives such as Model. Code in this directory often depends onRenderer.Source/DataSources- Entity API, such asEntity, and data sources such asCzmlDataSource.Source/Widgets- Widgets such as the main CesiumViewer.
It is usually obvious what directory a file belongs in. When it isn't, the decision is usually between Core and another directory. Put the file in Core if it is pure number crunching or a utility that is expected to be generally useful to Cesium, e.g., Matrix4 belongs in Core since many parts of the Cesium stack use 4x4 matrices; on the other hand, BoundingSphereState is in DataSources because it is specific to data sources.
Modules (files) should only reference modules in the same level or a lower level of the stack. For example, a module in Scene can use modules in Scene, Renderer, and Core, but not in DataSources or Widgets.
- WebGL resources need to be explicitly deleted so classes that contain them (and classes that contain these classes, and so on) have
destroyandisDestroyedfunctions, e.g.,
const primitive = new Primitive(/* ... */);
expect(content.isDestroyed()).toEqual(false);
primitive.destroy();
expect(content.isDestroyed()).toEqual(true);
A destroy function is implemented with Cesium's destroyObject function, e.g.,
SkyBox.prototype.destroy = function () {
this._vertexArray = this._vertexArray && this._vertexArray.destroy();
return destroyObject(this);
};
- Only
destroyobjects that you create; external objects given to a class should be destroyed by their owner, not the class.
Deprecation and Breaking Changes
From release to release, we strive to keep the public Cesium API stable but also maintain mobility for speedy development and to take the API in the right direction. As such, we sparingly deprecate and then remove or replace parts of the public API.
A @private API is considered a Cesium implementation detail and can be broken immediately without deprecation.
An @experimental API is subject to breaking changes in future Cesium releases without deprecation. It allows for new experimental features, for instance implementing draft formats.
A public identifier (class, function, property) should be deprecated before being removed. To do so:
- Decide on which future version the deprecated API should be removed. This is on a case-by-case basis depending on how badly it impacts users and Cesium development. Most deprecated APIs will removed in 3-6 releases. This can be discussed in the pull request if needed.
- Use
deprecationWarningto warn users that the API is deprecated and what proactive changes they can take, e.g.,
function Foo() {
deprecationWarning(
"Foo",
"Foo was deprecated in CesiumJS 1.01. It will be removed in 1.03. Use newFoo instead.",
);
// ...
}
- Add the
@deprecateddoc tag. - Remove all use of the deprecated API inside Cesium except for unit tests that specifically test the deprecated API.
- Mention the deprecation in the
Deprecatedsection ofCHANGES.md. Include what Cesium version it will be removed in. - Create an issue to remove the API with the appropriate
remove in [version]label. - Upon removal of the API, add a mention of it in the
Breaking Changessection ofCHANGES.md.
Third-Party Libraries
🏠 Cesium uses third-party libraries sparingly. If you want to add a new one, please start a thread on the Cesium community forum (example discussion). The library should
- Have a compatible license such as MIT, BSD, or Apache 2.0.
- Provide capabilities that Cesium truly needs and that the team doesn't have the time and/or expertise to develop.
- Be lightweight, tested, maintained, and reasonably widely used.
- Not pollute the global namespace.
- Provide enough value to justify adding a third-party library whose integration needs to be maintained and has the potential to slightly count against Cesium when some users evaluate it (generally, fewer third-parties is better).
When adding or updating a third-party library:
- Ensure LICENSE.md is updated with the library's name and full copyright notice.
- If a library is shipped as part of the CesiumJS release, it should be included in the generated
ThirdParty.json.- Update
ThirdParty.extra.jsonwith the packagename. If it is an npm module included inpackage.json, use the exact package name. - If the library is not an npm module included in
package.json, provide thelicense,version, andurlfields. Otherwise, this information can be detected usingpackage.json. - If there is a special case regarding the license, such as choosing to use a single license from a list of multiple available ones, providing the
licensefield will override information detected usingpackage.json. Thenotesfield should also be provided in the case explaining the exception. - Run
npm run build-third-partyand commit the resultingThirdParty.json
- Update
Widgets
Cesium includes a handful of standard widgets that are used in the Viewer, including animation and timeline controls, a base layer picker, and a geocoder. These widgets are all built using Knockout) for automatic UI refreshing. Knockout uses a Model View ViewModel (MVVM) design pattern. You can learn more about this design pattern in Understanding MVVM - A Guide For JavaScript Developers
To learn about using the Knockout library, see the Get started section of their home page. They also have a great interactive tutorial with step by step instructions.
Cesium also uses the Knockout-ES5 plugin to simplify knockout syntax. This lets us use knockout observables the same way we use other variables. Call knockout.track to create the observables. Here is an example from BaseLayerPickerViewModel that makes observables for tooltip, showInstructions and _touch properties.
knockout.track(this, ["tooltip", "showInstructions", "_touch"]);
Knockout subscriptions
Use a knockout subscription only when you are unable to accomplish what you need to do with a standard binding. For example, the Viewer subscribes to FullscreenButtonViewModel.isFullscreenEnabled because it needs to change the width of the timeline widget when that value changes. This cannot be done with binding because the value from FullscreenButtonViewModel is affecting a value not contained within that widget.
Cesium includes a subscribeAndEvaluate helper function for subscribing to knockout observable.
When using a subscription, always be sure to dispose the subscription when the viewmodel is no longer using it. Otherwise the listener will continue to be notified for the lifetime of the observable.
fullscreenSubscription = subscribeAndEvaluate(fullscreenButton.viewModel, 'isFullscreenEnabled', function(isFullscreenEnabled) { ... });
// ...then later...
fullscreenSubscription.dispose();
GLSL
GLSL Naming
- GLSL files end with
.glsland are in the Shaders directory. - Files for vertex shaders have a
VSsuffix; fragment shaders have anFSsuffix. For example:BillboardCollectionVS.glslandBillboardCollectionFS.glsl. - Generally, identifiers, such as functions and variables, use
camelCase. - Cesium built-in identifiers start with
czm_, for example,czm_material. Files have the same name without theczm_prefix, e.g.,material.glsl. - Use
czm_textureCubewhen sampling a cube map instead oftexture. This is to preserve backwards compatibility with WebGL 1. - Varyings start with
v_, e.g.,in vec2 v_textureCoordinates; - Uniforms start with
u_, e.g.,uniform sampler2D u_atlas; - An
ECsuffix indicates the point or vector is in eye coordinates, e.g.,varying vec3 v_positionEC; // ... v_positionEC = (czm_modelViewRelativeToEye * p).xyz; - When GPU RTE is used,
HighandLowsuffixes define the high and low bits, respectively, e.g.,attribute vec3 position3DHigh; attribute vec3 position3DLow; - 2D texture coordinates are
sandt, notuandv, e.g.,attribute vec2 st;
GLSL Formatting
- Use the same formatting as JavaScript, except put
{on a new line, e.g.,struct czm_ray { vec3 origin; vec3 direction; };
GLSL Performance
- 🚤 Compute expensive values as infrequently as possible, e.g., prefer computing a value in JavaScript and passing it in a uniform instead of redundantly computing the same value per-vertex. Likewise, prefer to compute a value per-vertex and pass a varying, instead of computing per-fragment when possible.
- 🚤 Use
discardsparingly since it disables early-z GPU optimizations.
Branching in shaders
Conditional logic may have a performance impact when executing shader code. GPUs rely on many parallel calculations being executable at once, and branching code can disrupt that parallelism— executing expensive instructions for one vertex or fragment in one thread may block the execution of the others.
- Avoid executing non-trivial code in
if-elsestatements. - Branching based on the value of uniform, e.g.
if (czm_orthographicIn3D == 1.0), or variables consistent across all vertices or fragments shouldn't cause a bottleneck. - 🚤 Use
czm_branchFreeTernaryto avoid branching. For example:
could be better written asif (sphericalLatLong.y >= czm_pi) { sphericalLatLong.y = sphericalLatLong.y - czm_twoPi; }sphericalLatLong.y = czm_branchFreeTernary(sphericalLatLong.y < czm_pi, sphericalLatLong.y, sphericalLatLong.y - czm_twoPi);
Resources
See Section 4.1 to 4.3 of Getting Serious with JavaScript by Cesium contributors Matthew Amato and Kevin Ring in WebGL Insights for deeper coverage of modules and performance.
Watch From Console to Chrome by Lilli Thompson for even deeper performance coverage.
