ICustomVisualizer Interface
Interface for a custom visualizer.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECustomObjects assembly)
Syntax
public interface ICustomVisualizer
Remarks
A custom visualizers is a feature in Carmenta Engine that lets you write your own code for visualizing features, when the standard visualizers are not sufficient. They are implemented the same way as custom operators and datasets, i.e. the application creates a C++, Java or .NET object which implements this ICustomVisualizer interface, and a proxy object CustomVisualizerProxy is used to access it from a map configuration.
Custom symbols, implementing the ICustomSymbol interface, are variants of custom visualizers that only draw symbol objects. They combine all the functionality of SymbolVisualizer with the ability to customize the symbols. Custom symbols are also partially supported in 3D; custom visualizers are not. See ICustomSymbol for more information.
There are three different kinds of custom visualizers:
The simplest one only implements this interface, with the InitNew, Clone and Draw methods. The Draw method has access to the Carmenta Engine drawable, and can use its drawing methods to create the visualization. Using this interface gives you a few things for free: Carmenta Engine can do automatic hit-testing of the visualization for selection purposes, and the visualization can also be cached by Carmenta Engine, to improve performance, especially in a TileLayer.
If the drawing primitives of the drawable are sufficient to do the visualization, but you need greater control over hit-testing for selection, you may also implement the ICustomVisualizerHitTest interface. Drawing and caching is performed the same way as before, but now hit-testing is not done automatically by Carmenta Engine, instead it is delegated to the hit-testing interface. See ICustomVisualizerHitTest for more information.
The last variant should be used only when the drawing capabilities of the drawable is insufficient for your needs. Instead of implementing this interface (and maybe ICustomVisualizerHitTest), you implement the ICustomNativeVisualizer interface. With this interface, you may draw directly to the underlying, native graphics object, typically a Windows DC or an OpenGL context. See ICustomNativeVisualizer for more information. However, using this method has several drawbacks compared to the others: Your custom visualizer only work with one type of drawable, you may have to implement your own hit-testing, and you will not get any visualization caching.
The custom visualizer can be used directly in a map configuration using a CustomVisualizerProxy object. The proxy works as regular Carmenta Engine visualizer, but delegates most calls to the custom object. Please see CustomVisualizerProxy for more information how to configure and load the custom object.
Optimizing the performance of .NET and Java custom objects
Custom objects that are implemented in .NET or Java, both of which use a garbage collector to manage memory, can generate a lot of temporary object instances that must be collected and finalized by the garbage collector. These temporary objects can, depending on how many times a custom object is called during a typical update cycle, generate so much extra work for the garbage collector that it has a significant impact on performance.
In many cases you can improve the performance by adding the IMinimizeGarbageCollection interface to the custom visualizer implementation. This tells Carmenta Engine that reference objects passed to, and returned from, the custom object should be disposed automatically which decreases the work that must be performed by the garbage collector.
Platforms
Windows, Linux, Android
See Also
Reference
CustomObjects Module
CustomVisualizerProxy
ICustomDataSet
ICustomOperator
ICustomSymbol
ICustomPropagation
IMinimizeGarbageCollection
ICustomVisualizer Members
The ICustomVisualizer type has the following members.
Methods
Name | Description |
---|---|
Clone | Called to create a copy of the custom object. |
Draw | Draws the specified feature. |
InitNew | Called when the custom visualizer is created by or connected to a CustomVisualizerProxy. |