Migrating tools
New tool interface
Carmenta Engine 4.x included two quite different ITool interfaces:
In the COM API, the interface consisted mainly of three methods: StartManipulation(), Manipulate() and EndManipulation(). These methods were called by the ActiveX control class (SpaceX) for all Windows messages posted to the control. The control held a state for the tool, controlling which method to call; depending on the return values from the tool, the state changed and the next method was called.
A concept of "commands" was also used. Each completed user interaction could create an object implementing the ICommand interface; these commands could be used to implement Undo/Redo functionality in an application.When the C++ API was introduced in version 4.7, a different interface was chosen. This interface consisted of callback methods for various GUI events such as mouse clicks and key presses. The C++ control class did not have to keep track of the state of the tool, it was up to the tool itself.
The C++ interface did not support commands.
In Carmenta Engine 5, the C++ variant of the interface was selected, for all APIs, see ITool. This means that migration of tools written with the COM ITool interface will not be so simple. It will require not only fixing simple syntactic problems and name changes, but also some redesign to make the tool work with the new interface.
To make this migration a little easier, Carmenta Engine 5 provides a special class Engine4ToolAdapter, which bridges the differences between the new and old interfaces. This class is available not only in the .NET Framework API, but also in C++, for tools written in C++ using the old COM API.
Mouse cursors
Another difference in the new tool interface is how mouse cursors are handled. In Carmenta Engine 4.x, the tool interface had two properties, MousePointer and MouseIcon that were used to control the mouse cursors used by the tools.
In version 5, a set of predefined cursors (see Cursor) are used by the built-in tools. These standard cursors can be overridden by the application, by calling the MapControl.SetCustomCursor method on the map control class, but this is usually not necessary.
User-written tools should not use these built-in cursors. They may instead change the cursors of the map control, using the appropriate methods or properties of the GUI control base classes.
Commands
The ICommand interface is not supported in Carmenta Engine 5. If an application wishes to support Undo/Redo, it will have to implement this by other means.