00001 /****************************************************************************/ 00007 // Stores time-dependant events and executes them at the proper time (guisim) 00008 /****************************************************************************/ 00009 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/ 00010 // Copyright 2001-2010 DLR (http://www.dlr.de/) and contributors 00011 /****************************************************************************/ 00012 // 00013 // This program is free software; you can redistribute it and/or modify 00014 // it under the terms of the GNU General Public License as published by 00015 // the Free Software Foundation; either version 2 of the License, or 00016 // (at your option) any later version. 00017 // 00018 /****************************************************************************/ 00019 00020 00021 // =========================================================================== 00022 // included modules 00023 // =========================================================================== 00024 #ifdef _MSC_VER 00025 #include <windows_config.h> 00026 #else 00027 #include <config.h> 00028 #endif 00029 00030 #include <cassert> 00031 #include "GUIEventControl.h" 00032 00033 #ifdef CHECK_MEMORY_LEAKS 00034 #include <foreign/nvwa/debug_new.h> 00035 #endif // CHECK_MEMORY_LEAKS 00036 00037 00038 // =========================================================================== 00039 // member definitions 00040 // =========================================================================== 00041 /* ------------------------------------------------------------------------- 00042 * methods from GUIEventControl 00043 * ----------------------------------------------------------------------- */ 00044 GUIEventControl::GUIEventControl() throw() {} 00045 00046 00047 GUIEventControl::~GUIEventControl() throw() { 00048 } 00049 00050 00051 SUMOTime 00052 GUIEventControl::addEvent(Command* operation, 00053 SUMOTime execTimeStep, 00054 AdaptType type) throw() { 00055 myLock.lock(); 00056 SUMOTime ret = MSEventControl::addEvent(operation, execTimeStep, type); 00057 myLock.unlock(); 00058 return ret; 00059 } 00060 00061 00062 void 00063 GUIEventControl::execute(SUMOTime execTime) throw(ProcessError) { 00064 myLock.lock(); 00065 try { 00066 MSEventControl::execute(execTime); 00067 } catch (ProcessError &) { 00068 myLock.unlock(); 00069 throw; 00070 } 00071 myLock.unlock(); 00072 } 00073 00074 00075 00076 /****************************************************************************/ 00077
1.5.6