summaryrefslogtreecommitdiffstats
path: root/source/Concept/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/main.cpp')
-rw-r--r--source/Concept/main.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/source/Concept/main.cpp b/source/Concept/main.cpp
deleted file mode 100644
index 6305a1e..0000000
--- a/source/Concept/main.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-#include "stdafx.h"
-
-int main()
-{
- //Init our robot
- Robot* localRobot = new Robot();
-
- //Init Engines
- for(uint8 i = IO_ENGINE_START; i < IO_ENGINE_END; i++)
- {
- Engine* newEngine = new Engine(i);
- localRobot->AddModule(newEngine);
- newEngine = NULL;
- }
-
- //Init Sensors
- for(uint8 i = IO_SENSOR_START; i < IO_SENSOR_END; i++)
- {
- SensorTypes newSensorType;
-
- switch(i)
- {
- //Cases when sensor is digital:
- // newSensorType = SENSOR_TYPE_DIGITAL;
- // break;
-
- //Other cases
- default:
- newSensorType = SENSOR_TYPE_ANALOG;
- break;
- }
-
- Sensor* newSensor = new Sensor(i, newSensorType);
- localRobot->AddModule(newSensor);
- newSensor = NULL;
- }
-
- //Run
- while(true)
- {
- localRobot->Update();
- }
-
- //Cleanup
- delete localRobot;
- localRobot = NULL;
-} \ No newline at end of file