Carmenta Engine APIs
Carmenta Engine supports the following programming interfaces, or APIs:
.NET (C#, Visual Basic or C++/CLI or any other .NET language)
C++
Java
Python®
The APIs are built as thin wrappers around the Carmenta Engine kernel classes, which implement all of the functionality. This means that the object model is almost identical across the APIs. The same object model can also be seen in Carmenta Studio when creating map configurations.
But even though the APIs share the same object model, there are some differences. These are the most important:
Each API has been designed to follow as closely as possible the conventions and design guide lines for their particular platform. For instance, the casing of method and property names differ between the APIs; in .NET they are all capitalized, whereas in the C++ and Python APIs all methods and properties starts with a lowercase letter.
The various collection classes differ between the APIs. They typically implement the "native" collection interfaces of the platform. For instance, collections in the .NET API implement the standard IList<T> interface, which inherits from IEnumerable<T>, making them very easy to use with foreach loops in C#.
Another area where the APIs differ is the GUI controls. The .NET API includes two different GUI controls, for Windows, for displaying Carmenta Engine views; one for Windows Forms and one for Windows Presentation Foundation, WPF. There is also a MAUI map control, for Windows and Android, and a map control for Android/.NET. The Java API includes an AWT based control for use on Windows and Linux, and another control used on Android. The C++ API includes a generic base class for a GUI control that can be sub-classed for almost any GUI framework, and one specific map control for Qt. Finally, the Python API does not include any GUI components.
Most applications will only need to use one of these interfaces. However, it is possible to mix the APIs in the same application. One common case where this happens is if an application uses custom objects. An application written in C# may for instance use a custom operator written in C++, and vice versa. Applications using the ScriptOperator class will need to use the Python API in the processing scripts. References to kernel objects may be passed from one API to another using the Runtime.RegisterObject and Runtime.GetRegisteredObject methods.
For more detailed information about the different APIs, please see the following articles.
More Information
Carmenta Engine .NET API
Provides information about using the .NET API for creating applications or custom objects.
Carmenta Engine C++ API
Provides information about using the C++ API for creating applications or custom objects.
Carmenta Engine Java API
Provides information about using the Java API for creating applications or custom objects.
Carmenta Engine Python API
Provides information about using the Python API for creating ScriptOperator scripts.