AnimatLab  2
Test
ModuleThreadProcessor.cpp
Go to the documentation of this file.
1 
7 #include "StdAfx.h"
8 #include "IMovableItemCallback.h"
9 #include "ISimGUICallback.h"
10 #include "AnimatBase.h"
11 
12 #include "Node.h"
13 #include "Link.h"
14 #include "IPhysicsMovableItem.h"
15 #include "IPhysicsBody.h"
16 #include "BoundingBox.h"
17 #include "MovableItem.h"
18 #include "BodyPart.h"
19 #include "Adapter.h"
20 #include "Joint.h"
21 #include "ReceptiveField.h"
22 #include "ContactSensor.h"
23 #include "RigidBody.h"
24 #include "Structure.h"
25 #include "NeuralModule.h"
26 #include "NervousSystem.h"
27 #include "Organism.h"
28 #include "ActivatedItem.h"
29 #include "ActivatedItemMgr.h"
30 #include "DataChartMgr.h"
31 #include "ExternalStimuliMgr.h"
32 #include "KeyFrame.h"
33 #include "SimulationRecorder.h"
34 #include "OdorType.h"
35 #include "Odor.h"
36 #include "Light.h"
37 #include "LightManager.h"
38 #include "Simulator.h"
39 
40 namespace AnimatSim
41 {
42 
52 {
53  m_strName = strModuleName;
54 }
55 
65 {
66 
67 try
68 {
69 }
70 catch(...)
71 {Std_TraceMsg(0, "Caught Error in desctructor of ModuleThreadProcessor\r\n", "", -1, false, true);}
72 }
73 
75 {}
76 
77 void ModuleThreadProcessor::StepAdapters()
78 {
79 }
80 
81 } //AnimatSim
Base class file for all Animat simulation objects.
Declares the nervous system class.
Declares the simulation recorder class.
Root namespace for the base simulation library for AnimatLab.
Declares the body part class.
Declares the key frame class.
ModuleThreadProcessor(std::string strModuleName)
Default constructor.
Declares the joint class.
Declares the organism class.
Declares a light object.
Declares the activated item class.
Declares a light manager object.
Declares the bounding box class.
Declares the node class.
void Std_TraceMsg(const int iLevel, std::string strMessage, std::string strSourceFile, int iSourceLine, bool bLogToFile, bool bPrintHeader)
Traces a message to the debugger window.
virtual ~ModuleThreadProcessor()
Destructor.
Declares the data chart manager class.
Declares the rigid body class.
Declares the structure class.
Declares the odor type class.
virtual void StepSimulation()
Step the simulation for this object.
Declares the odor class.
Declares the simulator class.
Declares the neural module class.
Declares the activated item manager class.
Declares the contact sensor class.
Declares the external stimuli manager class.
Declares the receptive field class.
std::string m_strName
The name for this object.
Definition: AnimatBase.h:61