Changeset 1586 for code/branches/core3/src/core
- Timestamp:
- Jun 10, 2008, 3:35:50 PM (16 years ago)
- Location:
- code/branches/core3/src/core
- Files:
-
- 28 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/core/CMakeLists.txt
r1574 r1586 7 7 ObjectListBase.cc 8 8 OrxonoxClass.cc 9 OutputBuffer.cc10 OutputHandler.cc11 9 Script.cc 12 10 SignalHandler.cc -
code/branches/core3/src/core/ClassFactory.h
r1583 r1586 43 43 #include "Factory.h" 44 44 #include "Identifier.h" 45 #include " Debug.h"45 #include "util/Debug.h" 46 46 47 47 namespace orxonox -
code/branches/core3/src/core/CommandEvaluation.cc
r1563 r1586 30 30 #include "ConsoleCommand.h" 31 31 #include "Identifier.h" 32 #include " Debug.h"32 #include "util/Debug.h" 33 33 #include "util/String.h" 34 34 -
code/branches/core3/src/core/CommandExecutor.cc
r1505 r1586 31 31 #include "util/String.h" 32 32 #include "util/Convert.h" 33 #include "util/Debug.h" 33 34 #include "Identifier.h" 34 35 #include "Language.h" 35 #include "Debug.h"36 36 #include "TclBind.h" 37 37 -
code/branches/core3/src/core/ConsoleCommandCompilation.cc
r1505 r1586 29 29 #include "ConsoleCommandCompilation.h" 30 30 #include "ConsoleCommand.h" 31 #include " Debug.h"31 #include "util/Debug.h" 32 32 #include "util/ExprParser.h" 33 33 -
code/branches/core3/src/core/Core.cc
r1535 r1586 107 107 this->softDebugLevel_ = this->softDebugLevelShell_; 108 108 109 OutputHandler::setSoftDebugLevel(OutputHandler::LD_All, this->softDebugLevel_); 110 OutputHandler::setSoftDebugLevel(OutputHandler::LD_Console, this->softDebugLevelConsole_); 111 OutputHandler::setSoftDebugLevel(OutputHandler::LD_Logfile, this->softDebugLevelLogfile_); 112 OutputHandler::setSoftDebugLevel(OutputHandler::LD_Shell, this->softDebugLevelShell_); 109 113 110 114 std::string temp = this->language_; … … 158 162 else if (device == OutputHandler::LD_Shell) 159 163 Core::getInstance().softDebugLevelShell_ = level; 164 165 OutputHandler::setSoftDebugLevel(device, level); 160 166 } 161 167 } … … 199 205 } 200 206 } 201 202 /**203 @brief Returns the soft debug level, stored in the only existing instance of the DebugLevel class, configured in the config-file.204 @return The soft debug level205 */206 int getSoftDebugLevel()207 {208 return orxonox::Core::getSoftDebugLevel();209 } -
code/branches/core3/src/core/Core.h
r1535 r1586 41 41 42 42 #include "OrxonoxClass.h" 43 #include " OutputHandler.h"43 #include "util/OutputHandler.h" 44 44 45 45 namespace orxonox -
code/branches/core3/src/core/CoreIncludes.h
r1583 r1586 46 46 #include "Factory.h" 47 47 #include "ClassFactory.h" 48 #include " Debug.h"48 #include "util/Debug.h" 49 49 50 50 -
code/branches/core3/src/core/CorePrereqs.h
r1574 r1586 139 139 class ObjectListBaseElement; 140 140 class OrxonoxClass; 141 class OutputBuffer;142 class OutputBufferListener;143 class OutputHandler;144 141 class Shell; 145 142 class ShellListener; -
code/branches/core3/src/core/Error.cc
r1505 r1586 33 33 34 34 #include "Error.h" 35 #include " Debug.h"35 #include "util/Debug.h" 36 36 37 37 namespace orxonox -
code/branches/core3/src/core/Executor.h
r1505 r1586 37 37 #include "util/Math.h" 38 38 #include "Functor.h" 39 #include " Debug.h"39 #include "util/Debug.h" 40 40 41 41 -
code/branches/core3/src/core/Factory.cc
r1505 r1586 34 34 #include "Factory.h" 35 35 #include "Identifier.h" 36 #include "Debug.h"37 36 #include "BaseObject.h" 37 #include "util/Debug.h" 38 38 39 39 namespace orxonox -
code/branches/core3/src/core/Functor.h
r1505 r1586 34 34 35 35 #include "util/MultiTypeMath.h" 36 #include " Debug.h"36 #include "util/Debug.h" 37 37 38 38 #define MAX_FUNCTOR_ARGUMENTS 5 -
code/branches/core3/src/core/Identifier.h
r1583 r1586 60 60 #include <utility> 61 61 62 #include "Debug.h"63 62 #include "Iterator.h" 63 #include "util/Debug.h" 64 64 #include "util/String.h" 65 65 -
code/branches/core3/src/core/Language.cc
r1535 r1586 37 37 38 38 #include "Core.h" 39 40 #include "Debug.h" 39 #include "util/Debug.h" 41 40 42 41 namespace orxonox -
code/branches/core3/src/core/Loader.cc
r1574 r1586 33 33 #include "Iterator.h" 34 34 #include "ObjectList.h" 35 #include "Debug.h"36 35 #include "CoreIncludes.h" 37 36 #include "Script.h" 38 37 #include "Namespace.h" 38 #include "util/Debug.h" 39 39 40 40 #include "tinyxml/ticpp.h" -
code/branches/core3/src/core/MetaObjectList.cc
r1574 r1586 33 33 34 34 #include "MetaObjectList.h" 35 #include " Debug.h"35 #include "util/Debug.h" 36 36 37 37 namespace orxonox -
code/branches/core3/src/core/NamespaceNode.cc
r1505 r1586 28 28 29 29 #include "NamespaceNode.h" 30 #include " Debug.h"30 #include "util/Debug.h" 31 31 32 32 namespace orxonox -
code/branches/core3/src/core/Shell.cc
r1540 r1586 34 34 #include "ConsoleCommand.h" 35 35 #include "input/InputInterfaces.h" 36 #include "util/OutputHandler.h" 36 37 37 38 #define SHELL_UPDATE_LISTENERS(function) \ … … 43 44 SetConsoleCommand(Shell, clearShell, true); 44 45 SetConsoleCommand(Shell, history, true); 46 47 SetConsoleCommandShortcutGeneric(log, createConsoleCommand(createFunctor(&OutputHandler::log), "log" )); 48 SetConsoleCommandShortcutGeneric(error, createConsoleCommand(createFunctor(&OutputHandler::error), "error" )); 49 SetConsoleCommandShortcutGeneric(warning, createConsoleCommand(createFunctor(&OutputHandler::warning), "warning")); 50 SetConsoleCommandShortcutGeneric(info, createConsoleCommand(createFunctor(&OutputHandler::info), "info" )); 51 SetConsoleCommandShortcutGeneric(debug, createConsoleCommand(createFunctor(&OutputHandler::debug), "debug" )); 45 52 46 53 Shell::Shell() -
code/branches/core3/src/core/Shell.h
r1535 r1586 37 37 #include "OrxonoxClass.h" 38 38 #include "input/InputBuffer.h" 39 #include " OutputBuffer.h"39 #include "util/OutputBuffer.h" 40 40 41 41 namespace orxonox -
code/branches/core3/src/core/SignalHandler.cc
r1505 r1586 36 36 #include <assert.h> 37 37 #include <iostream> 38 39 #include "Debug.h"40 38 41 39 SignalHandler * SignalHandler::singletonRef = NULL; -
code/branches/core3/src/core/TclBind.cc
r1505 r1586 32 32 #include "ConsoleCommand.h" 33 33 #include "CommandExecutor.h" 34 #include "Debug.h"35 34 #include "TclThreadManager.h" 36 35 #include "TclBind.h" 36 #include "util/Debug.h" 37 37 #include "util/String.h" 38 38 -
code/branches/core3/src/core/TclThreadManager.cc
r1583 r1586 38 38 #include "ConsoleCommand.h" 39 39 #include "CommandExecutor.h" 40 #include "Debug.h"41 40 #include "TclBind.h" 42 41 #include "TclThreadManager.h" 42 #include "util/Debug.h" 43 43 #include "util/Convert.h" 44 44 -
code/branches/core3/src/core/XMLPort.h
r1505 r1586 32 32 #include "CorePrereqs.h" 33 33 34 #include "util/Debug.h" 34 35 #include "util/XMLIncludes.h" 35 36 #include "util/MultiTypeMath.h" 36 37 #include "tinyxml/ticpp.h" 37 38 #include "Executor.h" 38 #include "Debug.h"39 39 #include "CoreIncludes.h" 40 40 #include "BaseObject.h" -
code/branches/core3/src/core/input/Button.cc
r1535 r1586 36 36 #include "util/SubString.h" 37 37 #include "util/String.h" 38 #include " core/Debug.h"38 #include "util/Debug.h" 39 39 #include "core/ConsoleCommand.h" 40 40 #include "core/CommandEvaluation.h" -
code/branches/core3/src/core/input/InputManager.cc
r1555 r1586 39 39 #include "core/CoreIncludes.h" 40 40 #include "core/ConfigValueIncludes.h" 41 #include "core/Debug.h"42 41 #include "core/CommandExecutor.h" 43 42 #include "core/ConsoleCommand.h" 44 43 #include "core/Shell.h" // hack! 44 #include "util/Debug.h" 45 45 46 46 #include "InputBuffer.h" -
code/branches/core3/src/core/input/KeyBinder.cc
r1567 r1586 36 36 #include <string> 37 37 #include "util/Convert.h" 38 #include " core/Debug.h"38 #include "util/Debug.h" 39 39 #include "core/ConfigValueIncludes.h" 40 40 #include "core/CoreIncludes.h" -
code/branches/core3/src/core/input/KeyDetector.cc
r1535 r1586 33 33 34 34 #include "KeyDetector.h" 35 #include " core/Debug.h"35 #include "util/Debug.h" 36 36 #include "core/CoreIncludes.h" 37 37 #include "core/CommandExecutor.h"
Note: See TracChangeset
for help on using the changeset viewer.