aboutsummaryrefslogtreecommitdiff
path: root/behaviors/EchoBehavior.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/EchoBehavior.py')
-rw-r--r--behaviors/EchoBehavior.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/behaviors/EchoBehavior.py b/behaviors/EchoBehavior.py
new file mode 100644
index 0000000..a11558a
--- /dev/null
+++ b/behaviors/EchoBehavior.py
@@ -0,0 +1,12 @@
+from operationscore.Behavior import *
+import Util
+import pdb
+class EchoBehavior(Behavior):
+ def processResponse(self, sensorInputs, recursiveInputs):
+ ret = []
+ for sensory in sensorInputs:
+ outDict = {}
+ outDict[Util.location] = sensory[Util.location]
+ outDict['Color'] = (255,0,0)
+ ret.append(outDict)
+ return ret