LayerManagerControl: refactored helper.cpp to feature specific implementation files
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 22 Nov 2012 12:07:08 +0000 (13:07 +0100)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 22 Nov 2012 14:34:52 +0000 (06:34 -0800)
Each group of related and similar functions are grouped into a cpp file to maintain file and code organization

Signed-off-by: Timo Lotterbach <timo.lotterbach@bmw-carit.de>
LayerManagerExamples/LayerManagerControl/CMakeLists.txt
LayerManagerExamples/LayerManagerControl/include/LMControl.h
LayerManagerExamples/LayerManagerControl/src/control.cpp [new file with mode: 0644]
LayerManagerExamples/LayerManagerControl/src/print.cpp [moved from LayerManagerExamples/LayerManagerControl/src/helper.cpp with 54% similarity]

index b3804c2..424911d 100644 (file)
@@ -32,9 +32,10 @@ include_directories(
 add_executable(${PROJECT_NAME}
     src/main.cpp
     src/commands.cpp
-    src/helper.cpp
+    src/control.cpp
     src/Expression.cpp
     src/ExpressionInterpreter.cpp
+    src/print.cpp
 )
 
 add_dependencies(${PROJECT_NAME}
index 0f37386..002a15b 100644 (file)
@@ -31,6 +31,10 @@ using std::set;
 
 #include <string>
 using std::string;
+//=============================================================================
+//print.cpp
+//=============================================================================
+
 /*
  * Functions for printing arrays, vector and maps
  */
@@ -66,6 +70,10 @@ void printSurfaceProperties(unsigned int surfaceid, const char* prefix = "");
  */
 void printScene();
 
+
+//=============================================================================
+//control.cpp
+//=============================================================================
 void getCommunicatorPerformance();
 void setSurfaceKeyboardFocus(t_ilm_surface surface);
 void getKeyboardFocus();
diff --git a/LayerManagerExamples/LayerManagerControl/src/control.cpp b/LayerManagerExamples/LayerManagerControl/src/control.cpp
new file mode 100644 (file)
index 0000000..8de18a6
--- /dev/null
@@ -0,0 +1,368 @@
+/***************************************************************************
+ *
+ * Copyright 2012 BMW Car IT GmbH
+ *
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ****************************************************************************/
+
+#include "ilm_client.h"
+#include "LMControl.h"
+
+#include <cstring>
+
+#include <iostream>
+using std::cout;
+using std::cin;
+using std::cerr;
+using std::endl;
+
+
+#include <iomanip>
+using std::dec;
+using std::hex;
+
+
+#include <pthread.h>
+#include <signal.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+
+bool gBenchmark_running;
+
+void benchmarkSigHandler(int sig)
+{
+    gBenchmark_running = false;
+}
+
+void getCommunicatorPerformance()
+{
+    int runs = 0;
+    int runtimeInSec = 5;
+    unsigned int hwLayerCnt = 0;
+    cout << "running performance test for " << runtimeInSec << " seconds... ";
+    flush(cout);
+
+    signal(SIGALRM, benchmarkSigHandler);
+
+    gBenchmark_running = true;
+
+    alarm(runtimeInSec);
+
+    while (gBenchmark_running)
+    {
+        ilm_getNumberOfHardwareLayers(0, &hwLayerCnt);
+        ++runs;
+    }
+
+    signal(SIGALRM, SIG_DFL);
+
+    cout << (runs/runtimeInSec) << " transactions/second\n";
+}
+
+void setSurfaceKeyboardFocus(t_ilm_surface surface)
+{
+    if (ilm_SetKeyboardFocusOn(surface) != ILM_SUCCESS)
+    {
+        cerr << "Error during communication" << endl;
+    }
+}
+
+void getKeyboardFocus()
+{
+    t_ilm_surface surfaceId;
+    if (ilm_GetKeyboardFocusSurfaceId(&surfaceId) == ILM_SUCCESS)
+    {
+        cout << "keyboardFocusSurfaceId == " << surfaceId << endl;
+    }
+    else
+    {
+        cerr << "Error during communication" << endl;
+    }
+}
+
+void setSurfaceAcceptsInput(t_ilm_surface surfaceId, string kbdPointerTouch, t_ilm_bool acceptance)
+{
+    char* str;
+    char* tok;
+
+    ilmInputDevice devices = (ilmInputDevice)0;
+
+    str = new char [kbdPointerTouch.size()+1];
+    strcpy (str, kbdPointerTouch.c_str());
+    tok = strtok(str, ":");
+    while (tok != NULL)
+    {
+        if (!strcmp(tok, "kbd"))
+        {
+            devices |= ILM_INPUT_DEVICE_KEYBOARD;
+        }
+        else if (!strcmp(tok, "pointer"))
+        {
+            devices |= ILM_INPUT_DEVICE_POINTER;
+        }
+        else if (!strcmp(tok, "touch"))
+        {
+            devices |= ILM_INPUT_DEVICE_TOUCH;
+        }
+        else
+        {
+            cerr << "Unknown devices specified." << endl;
+        }
+
+        tok = strtok(NULL, ":");
+    }
+
+    ilm_UpdateInputEventAcceptanceOn(surfaceId, devices, acceptance);
+    ilm_commitChanges();
+
+    delete[] str;
+}
+
+void layerNotificationCallback(t_ilm_layer layer, struct ilmLayerProperties* properties, t_ilm_notification_mask mask)
+{
+    cout << "\nNotification: layer " << layer << " updated properties:\n";
+
+    if (ILM_NOTIFICATION_VISIBILITY & mask)
+    {
+        cout << "\tvisibility = " << properties->visibility << "\n";
+    }
+
+    if (ILM_NOTIFICATION_OPACITY & mask)
+    {
+        cout << "\topacity = " << properties->opacity << "\n";
+    }
+
+    if (ILM_NOTIFICATION_ORIENTATION & mask)
+    {
+        cout << "\torientation = " << properties->orientation << "\n";
+    }
+
+    if (ILM_NOTIFICATION_SOURCE_RECT & mask)
+    {
+        cout << "\tsource rect = x:" << properties->sourceX
+             << ", y:" << properties->sourceY
+             << ", width:" << properties->sourceWidth
+             << ", height:" << properties->sourceHeight
+             << "\n";
+    }
+
+    if (ILM_NOTIFICATION_DEST_RECT & mask)
+    {
+        cout << "\tdest rect = x:" << properties->destX
+             << ", y:" << properties->destY
+             << ", width:" << properties->destWidth
+             << ", height:" << properties->destHeight
+             << "\n";
+    }
+}
+
+void testNotificationLayer(t_ilm_layer layerid)
+{
+
+    ilmErrorTypes ret;
+    cout << "Setup notification for layer " << layerid << " \n";
+    ret = ilm_layerAddNotification(layerid, layerNotificationCallback);
+
+    if (ret != ILM_SUCCESS)
+    {
+        cerr << "ilm_layerAddNotification returned error " << ret << "\n";
+    }
+
+    for  (int i = 0; i < 2; ++i)
+    {
+        usleep(100 * 1000);
+        cout << "Set layer 1000 visbility to FALSE\n";
+        ilm_layerSetVisibility(layerid, ILM_FALSE);
+        ilm_commitChanges();
+
+        usleep(100 * 1000);
+        cout << "Set layer 1000 visbility to TRUE\n";
+        ilm_layerSetVisibility(layerid, ILM_TRUE);
+
+        cout << "Set layer 1000 opacity to 0.3\n";
+        ilm_layerSetOpacity(layerid, 0.3);
+        ilm_commitChanges();
+
+        usleep(100 * 1000);
+        cout << "Set layer 1000 opacity to 1.0\n";
+        ilm_layerSetOpacity(layerid, 1.0);
+        ilm_commitChanges();
+    }
+
+    ilm_commitChanges(); // make sure, app lives long enough to receive last notification
+}
+
+void watchLayer(unsigned int* layerids, unsigned int layeridCount)
+{
+    for (unsigned int i = 0; i < layeridCount; ++i)
+    {
+        unsigned int layerid = layerids[i];
+        cout << "Setup notification for layer " << layerid << "\n";
+        ilmErrorTypes ret = ilm_layerAddNotification(layerid, layerNotificationCallback);
+
+        if (ret != ILM_SUCCESS)
+        {
+            cerr << "ilm_layerAddNotification(" << layerid << ") returned error " << ret << "\n";
+            return;
+        }
+    }
+
+    cout << "Waiting for notifications...\n";
+    int block;
+    cin >> block;
+
+    for (unsigned int i = 0; i < layeridCount; ++i)
+    {
+        unsigned int layerid = layerids[i];
+        cout << "Removing notification for layer " << layerid << "\n";
+        ilm_layerRemoveNotification(layerid);
+    }
+
+    if (layerids)
+    {
+        delete[] layerids;
+    }
+}
+
+void surfaceNotificationCallback(t_ilm_layer surface, struct ilmSurfaceProperties* properties, t_ilm_notification_mask mask)
+{
+    cout << "\nNotification: surface " << surface << " updated properties:\n";
+
+    if (ILM_NOTIFICATION_VISIBILITY & mask)
+    {
+        cout << "\tvisibility = " << properties->visibility << "\n";
+    }
+
+    if (ILM_NOTIFICATION_OPACITY & mask)
+    {
+        cout << "\topacity = " << properties->opacity << "\n";
+    }
+
+    if (ILM_NOTIFICATION_ORIENTATION & mask)
+    {
+        cout << "\torientation = " << properties->orientation << "\n";
+    }
+
+    if (ILM_NOTIFICATION_SOURCE_RECT & mask)
+    {
+        cout << "\tsource rect = x:" << properties->sourceX
+             << ", y:" << properties->sourceY
+             << ", width:" << properties->sourceWidth
+             << ", height:" << properties->sourceHeight
+             << "\n";
+    }
+
+    if (ILM_NOTIFICATION_DEST_RECT & mask)
+    {
+        cout << "\tdest rect = x:" << properties->destX
+             << ", y:" << properties->destY
+             << ", width:" << properties->destWidth
+             << ", height:" << properties->destHeight
+             << "\n";
+    }
+}
+
+void watchSurface(unsigned int* surfaceids, unsigned int surfaceidCount)
+{
+    for (unsigned int i = 0; i < surfaceidCount; ++i)
+    {
+        unsigned int surfaceid = surfaceids[i];
+        cout << "Setup notification for surface " << surfaceid << "\n";
+        ilmErrorTypes ret = ilm_surfaceAddNotification(surfaceid, surfaceNotificationCallback);
+
+        if (ret != ILM_SUCCESS)
+        {
+            cerr << "ilm_surfaceAddNotification(" << surfaceid << ") returned error " << ret << "\n";
+            return;
+        }
+    }
+
+    cout << "Waiting for notifications...\n";
+    int block;
+    cin >> block;
+
+    for (unsigned int i = 0; i < surfaceidCount; ++i)
+    {
+        unsigned int surfaceid = surfaceids[i];
+        cout << "Removing notification for surface " << surfaceid << "\n";
+        ilm_surfaceRemoveNotification(surfaceid);
+    }
+
+    if (surfaceids)
+    {
+        delete[] surfaceids;
+    }
+}
+
+void setOptimization(t_ilm_uint id, t_ilm_uint mode)
+{
+    if (ilm_SetOptimizationMode((ilmOptimization)id,
+                                    (ilmOptimizationMode)mode) != ILM_SUCCESS)
+    {
+        cerr << "Error during communication" << endl;
+    }
+
+    ilm_commitChanges();
+}
+
+void getOptimization(t_ilm_uint id)
+{
+    ilmOptimization optimizationId = (ilmOptimization)id;
+    ilmOptimizationMode optimizationMode;
+    if (ilm_GetOptimizationMode(optimizationId, &optimizationMode) == ILM_SUCCESS)
+    {
+        switch ( optimizationId )
+        {
+        case ILM_OPT_MULTITEXTURE :
+            cout << "Optimization " << (int)optimizationId << " (Multitexture Optimization)" << endl;
+            break;
+
+        case ILM_OPT_SKIP_CLEAR :
+            cout << "Optimization " << (int)optimizationId << " (Skip Clear)" << endl;
+            break;
+        default:
+            cout << "Optimization " << "unknown" << endl;
+            break;
+        }
+
+        switch (optimizationMode)
+        {
+        case ILM_OPT_MODE_FORCE_OFF :
+            cout << "Mode " << (int)optimizationMode << " (forced off)" << endl;
+            break;
+
+        case ILM_OPT_MODE_FORCE_ON :
+            cout << "Mode " << (int)optimizationMode << " (forced on)" << endl;
+            break;
+        case ILM_OPT_MODE_HEURISTIC :
+            cout << "Mode " << (int)optimizationMode << " (Heuristic / Render choose the optimization)" << endl;
+            break;
+        case ILM_OPT_MODE_TOGGLE :
+            cout << "Mode " << (int)optimizationMode << " (Toggle on/and off rapidly for debugging)" << endl;
+            break;
+
+        default:
+            cout <<"Mode " << "unknown" << endl ;
+            break;
+        }
+    }
+    else
+    {
+        cerr << "Error during communication" << endl;
+    }
+
+    ilm_commitChanges();
+}
@@ -9,33 +9,33 @@
  *
  *        http://www.apache.org/licenses/LICENSE-2.0
  *
- * Unless required by applicable law or agreed in writing, software
+ * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either inputess or implied.
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
  ****************************************************************************/
+
 #include "ilm_client.h"
-#include "Expression.h"
-#include "ExpressionInterpreter.h"
 #include "LMControl.h"
-#include <cstring>
+
 #include <iostream>
+using std::cout;
+using std::cin;
+using std::endl;
+
 #include <iomanip>
-#include <pthread.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include <map>
-#include <vector>
+using std::dec;
+using std::hex;
 
 
-using namespace std;
+#include <map>
+using std::map;
+
+#include <vector>
+using std::vector;
 
-//=============================================================================
-// common helper functions
-//=============================================================================
 
 void printArray(const char* text, unsigned int* array, int count)
 {
@@ -357,330 +357,3 @@ void printScene()
         }
     }
 }
-
-bool gBenchmark_running;
-
-void benchmarkSigHandler(int sig)
-{
-    gBenchmark_running = false;
-}
-
-void getCommunicatorPerformance()
-{
-    int runs = 0;
-    int runtimeInSec = 5;
-    unsigned int hwLayerCnt = 0;
-    cout << "running performance test for " << runtimeInSec << " seconds... ";
-    flush(cout);
-
-    signal(SIGALRM, benchmarkSigHandler);
-
-    gBenchmark_running = true;
-
-    alarm(runtimeInSec);
-
-    while (gBenchmark_running)
-    {
-        ilm_getNumberOfHardwareLayers(0, &hwLayerCnt);
-        ++runs;
-    }
-
-    signal(SIGALRM, SIG_DFL);
-
-    cout << (runs/runtimeInSec) << " transactions/second\n";
-}
-
-void setSurfaceKeyboardFocus(t_ilm_surface surface)
-{
-    if (ilm_SetKeyboardFocusOn(surface) != ILM_SUCCESS)
-    {
-        cerr << "Error during communication" << endl;
-    }
-}
-
-void getKeyboardFocus()
-{
-    t_ilm_surface surfaceId;
-    if (ilm_GetKeyboardFocusSurfaceId(&surfaceId) == ILM_SUCCESS)
-    {
-        cout << "keyboardFocusSurfaceId == " << surfaceId << endl;
-    }
-    else
-    {
-        cerr << "Error during communication" << endl;
-    }
-}
-
-void setSurfaceAcceptsInput(t_ilm_surface surfaceId, string kbdPointerTouch, t_ilm_bool acceptance)
-{
-    char* str;
-    char* tok;
-
-    ilmInputDevice devices = (ilmInputDevice)0;
-
-    str = new char [kbdPointerTouch.size()+1];
-    strcpy (str, kbdPointerTouch.c_str());
-    tok = strtok(str, ":");
-    while (tok != NULL)
-    {
-        if (!strcmp(tok, "kbd"))
-        {
-            devices |= ILM_INPUT_DEVICE_KEYBOARD;
-        }
-        else if (!strcmp(tok, "pointer"))
-        {
-            devices |= ILM_INPUT_DEVICE_POINTER;
-        }
-        else if (!strcmp(tok, "touch"))
-        {
-            devices |= ILM_INPUT_DEVICE_TOUCH;
-        }
-        else
-        {
-            cerr << "Unknown devices specified." << endl;
-        }
-
-        tok = strtok(NULL, ":");
-    }
-
-    ilm_UpdateInputEventAcceptanceOn(surfaceId, devices, acceptance);
-    ilm_commitChanges();
-
-    delete[] str;
-}
-
-void layerNotificationCallback(t_ilm_layer layer, struct ilmLayerProperties* properties, t_ilm_notification_mask mask)
-{
-    cout << "\nNotification: layer " << layer << " updated properties:\n";
-
-    if (ILM_NOTIFICATION_VISIBILITY & mask)
-    {
-        cout << "\tvisibility = " << properties->visibility << "\n";
-    }
-
-    if (ILM_NOTIFICATION_OPACITY & mask)
-    {
-        cout << "\topacity = " << properties->opacity << "\n";
-    }
-
-    if (ILM_NOTIFICATION_ORIENTATION & mask)
-    {
-        cout << "\torientation = " << properties->orientation << "\n";
-    }
-
-    if (ILM_NOTIFICATION_SOURCE_RECT & mask)
-    {
-        cout << "\tsource rect = x:" << properties->sourceX
-             << ", y:" << properties->sourceY
-             << ", width:" << properties->sourceWidth
-             << ", height:" << properties->sourceHeight
-             << "\n";
-    }
-
-    if (ILM_NOTIFICATION_DEST_RECT & mask)
-    {
-        cout << "\tdest rect = x:" << properties->destX
-             << ", y:" << properties->destY
-             << ", width:" << properties->destWidth
-             << ", height:" << properties->destHeight
-             << "\n";
-    }
-}
-
-void testNotificationLayer(t_ilm_layer layerid)
-{
-
-    ilmErrorTypes ret;
-    cout << "Setup notification for layer " << layerid << " \n";
-    ret = ilm_layerAddNotification(layerid, layerNotificationCallback);
-
-    if (ret != ILM_SUCCESS)
-    {
-        cerr << "ilm_layerAddNotification returned error " << ret << "\n";
-    }
-
-    for  (int i = 0; i < 2; ++i)
-    {
-        usleep(100 * 1000);
-        cout << "Set layer 1000 visbility to FALSE\n";
-        ilm_layerSetVisibility(layerid, ILM_FALSE);
-        ilm_commitChanges();
-
-        usleep(100 * 1000);
-        cout << "Set layer 1000 visbility to TRUE\n";
-        ilm_layerSetVisibility(layerid, ILM_TRUE);
-
-        cout << "Set layer 1000 opacity to 0.3\n";
-        ilm_layerSetOpacity(layerid, 0.3);
-        ilm_commitChanges();
-
-        usleep(100 * 1000);
-        cout << "Set layer 1000 opacity to 1.0\n";
-        ilm_layerSetOpacity(layerid, 1.0);
-        ilm_commitChanges();
-    }
-
-    ilm_commitChanges(); // make sure, app lives long enough to receive last notification
-}
-
-void watchLayer(unsigned int* layerids, unsigned int layeridCount)
-{
-    for (unsigned int i = 0; i < layeridCount; ++i)
-    {
-        unsigned int layerid = layerids[i];
-        cout << "Setup notification for layer " << layerid << "\n";
-        ilmErrorTypes ret = ilm_layerAddNotification(layerid, layerNotificationCallback);
-
-        if (ret != ILM_SUCCESS)
-        {
-            cerr << "ilm_layerAddNotification(" << layerid << ") returned error " << ret << "\n";
-            return;
-        }
-    }
-
-    cout << "Waiting for notifications...\n";
-    int block;
-    cin >> block;
-
-    for (unsigned int i = 0; i < layeridCount; ++i)
-    {
-        unsigned int layerid = layerids[i];
-        cout << "Removing notification for layer " << layerid << "\n";
-        ilm_layerRemoveNotification(layerid);
-    }
-
-    if (layerids)
-    {
-        delete[] layerids;
-    }
-}
-
-void surfaceNotificationCallback(t_ilm_layer surface, struct ilmSurfaceProperties* properties, t_ilm_notification_mask mask)
-{
-    cout << "\nNotification: surface " << surface << " updated properties:\n";
-
-    if (ILM_NOTIFICATION_VISIBILITY & mask)
-    {
-        cout << "\tvisibility = " << properties->visibility << "\n";
-    }
-
-    if (ILM_NOTIFICATION_OPACITY & mask)
-    {
-        cout << "\topacity = " << properties->opacity << "\n";
-    }
-
-    if (ILM_NOTIFICATION_ORIENTATION & mask)
-    {
-        cout << "\torientation = " << properties->orientation << "\n";
-    }
-
-    if (ILM_NOTIFICATION_SOURCE_RECT & mask)
-    {
-        cout << "\tsource rect = x:" << properties->sourceX
-             << ", y:" << properties->sourceY
-             << ", width:" << properties->sourceWidth
-             << ", height:" << properties->sourceHeight
-             << "\n";
-    }
-
-    if (ILM_NOTIFICATION_DEST_RECT & mask)
-    {
-        cout << "\tdest rect = x:" << properties->destX
-             << ", y:" << properties->destY
-             << ", width:" << properties->destWidth
-             << ", height:" << properties->destHeight
-             << "\n";
-    }
-}
-
-void watchSurface(unsigned int* surfaceids, unsigned int surfaceidCount)
-{
-    for (unsigned int i = 0; i < surfaceidCount; ++i)
-    {
-        unsigned int surfaceid = surfaceids[i];
-        cout << "Setup notification for surface " << surfaceid << "\n";
-        ilmErrorTypes ret = ilm_surfaceAddNotification(surfaceid, surfaceNotificationCallback);
-
-        if (ret != ILM_SUCCESS)
-        {
-            cerr << "ilm_surfaceAddNotification(" << surfaceid << ") returned error " << ret << "\n";
-            return;
-        }
-    }
-
-    cout << "Waiting for notifications...\n";
-    int block;
-    cin >> block;
-
-    for (unsigned int i = 0; i < surfaceidCount; ++i)
-    {
-        unsigned int surfaceid = surfaceids[i];
-        cout << "Removing notification for surface " << surfaceid << "\n";
-        ilm_surfaceRemoveNotification(surfaceid);
-    }
-
-    if (surfaceids)
-    {
-        delete[] surfaceids;
-    }
-}
-
-void setOptimization(t_ilm_uint id, t_ilm_uint mode)
-{
-    if (ilm_SetOptimizationMode((ilmOptimization)id,
-                                    (ilmOptimizationMode)mode) != ILM_SUCCESS)
-    {
-        cerr << "Error during communication" << endl;
-    }
-
-    ilm_commitChanges();
-}
-
-void getOptimization(t_ilm_uint id)
-{
-    ilmOptimization optimizationId = (ilmOptimization)id;
-    ilmOptimizationMode optimizationMode;
-    if (ilm_GetOptimizationMode(optimizationId, &optimizationMode) == ILM_SUCCESS)
-    {
-        switch ( optimizationId )
-        {
-        case ILM_OPT_MULTITEXTURE :
-            cout << "Optimization " << (int)optimizationId << " (Multitexture Optimization)" << endl;
-            break;
-
-        case ILM_OPT_SKIP_CLEAR :
-            cout << "Optimization " << (int)optimizationId << " (Skip Clear)" << endl;
-            break;
-        default:
-            cout << "Optimization " << "unknown" << endl;
-            break;
-        }
-
-        switch (optimizationMode)
-        {
-        case ILM_OPT_MODE_FORCE_OFF :
-            cout << "Mode " << (int)optimizationMode << " (forced off)" << endl;
-            break;
-
-        case ILM_OPT_MODE_FORCE_ON :
-            cout << "Mode " << (int)optimizationMode << " (forced on)" << endl;
-            break;
-        case ILM_OPT_MODE_HEURISTIC :
-            cout << "Mode " << (int)optimizationMode << " (Heuristic / Render choose the optimization)" << endl;
-            break;
-        case ILM_OPT_MODE_TOGGLE :
-            cout << "Mode " << (int)optimizationMode << " (Toggle on/and off rapidly for debugging)" << endl;
-            break;
-
-        default:
-            cout <<"Mode " << "unknown" << endl ;
-            break;
-        }
-    }
-    else
-    {
-        cerr << "Error during communication" << endl;
-    }
-
-    ilm_commitChanges();
-}