OrdinaryLayerCacheMode Enumeration
Specifies the type of presentation caching an OrdinaryLayer should use.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum OrdinaryLayerCacheMode
Values
Value name | Value | Description |
---|---|---|
None | 0 | The layer does not cache any presentation by itself. This should be used if the layer is cached by some other layer, like a TileLayer or BitmapLayer, or for surface layers in a GlobeView. |
Dynamic | 2 | This mode is specifically designed to cache the presentation of application data stored in MemoryDataSet and CustomDataSetProxy instances. It provides efficient caching just like a TileLayer, but it also allows the application to modify individual features in the datasets without discarding the entire cache. This mode will typically give a much better performance compared to an uncached layer. It does have a number of limitations though:
Important When the application modifies a feature in a dataset, it must also call MemoryDataSet.RefreshFeaturePresentation or CustomDataSetContext.RefreshFeaturePresentation to inform the layer that the feature has changed. |
DynamicAsync | 3 | Similar to Dynamic, but the cache is updated asynchronously on a dedicated background thread. When the layer is updated on the GUI thread, it will only render the objects currently in the cache, and will not process any features from the input operator. The upside of this is that the GUI thread will do less work, resulting in a higher and steadier frame rate, and maybe improve the responsiveness of the application UI. The downside is that modifications to the features may not be reflected on screen directly, it may take a few frames until the changes are visible. The background thread will wake up and update the cache each time the view parameters are changed, or when features in a MemoryDataSet or custom dataset have been updated and the dataset lock is released. When the cache has been updated, the layer will also request the view to perform an update. So with this cache mode, you don't need to update the view explicitly when you've updated your features. Important If you have a lot of features in your dataset, you should try to update them in small batches, so that you take the dataset lock with approximately the same frequency as the view update rate. If you take and release the dataset lock too often, the background thread will run more than needed, wasting CPU resources. If your batches are too large, each cache update will take longer, and it will take longer for the modifications to be visible in the view. |
Remarks
As noted above, a general rule for the Dynamic and DynamicAsync cache modes is that MemoryDataSet and CustomDataSetProxy are the only types of datasets allowed in the layer. However, this rule is relaxed for some operators with multiple inputs, where only the data from the ID-giving input must come from a supported dataset. The ID-giving input is the one whose features give their IDs to the output features.
Operator | ID-giving input |
---|---|
waypointsInput | |
positionInput | |
observerInput | |
observerInput | |
observerInput | |
waypointsInput |
When these operators are used with a Dynamic or DynamicAsync cache mode, any modification of data from some other input will not cause an automatic update of the visualization. Instead, the application must detect such changes and then call the method MemoryDataSet.RefreshAllFeaturePresentation(false) on the ID-giving MemoryDataSet. Note that this is possible in your own applications, but not in Carmenta Explorer.
For example, the TerrainRouteOperator has a restrictedAreaInput with data that may come from a MemoryDataSet, but since this is not the ID-giving input, it would not help to call RefreshFeaturePresentation on this dataset when its features have been modified. Instead, the application should listen for the FeatureChanged, FeatureInserted and FeatureRemoved events from this dataset, and when they occur, call RefreshAllFeaturePresentation(false) on the ID-giving MemoryDataSet.
Two of the special operators have an ID-giving input that is optional: the TerrainAccessOperator can work without any positionInput and the VisibilityIndexOperator can work without any observerInput. But without an ID-giving input, you cannot use a dynamic cache mode for the OrdinaryLayer. Instead, you can place the OrdinaryLayer under a TileLayer, but since a TileLayer is designed for static data, your application would need to call the Layer.FlushCache method of the OrdinaryLayer if some input data has been modified.
Also, the AirspaceCoverageOperator supports dynamic cache in an unusual way; see the operator documentation for more details.
Platforms
Windows, Linux, Android