Browse Source

add comment for future update

Bastien Sevajol 9 years ago
parent
commit
675a1bb57a

+ 1 - 1
intelligine/synergy/object/ant/Pheromon.py View File

1
 from xyzworld.SynergyObject import SynergyObject as XyzSynergyObject
1
 from xyzworld.SynergyObject import SynergyObject as XyzSynergyObject
2
 
2
 
3
 
3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4
 class Pheromon(XyzSynergyObject):
5
 class Pheromon(XyzSynergyObject):
5
 
6
 
6
     def __init__(self, collection, context):
7
     def __init__(self, collection, context):
7
         super().__init__(collection, context)
8
         super().__init__(collection, context)
8
         self._direction = None
9
         self._direction = None
9
 
10
 
10
-    # TODO: direction ailleurs non ?
11
     def set_direction(self, direction):
11
     def set_direction(self, direction):
12
         self._direction = direction
12
         self._direction = direction
13
 
13
 

+ 1 - 0
intelligine/synergy/object/ant/PheromonExploration.py View File

1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
2
 
2
 
3
 
3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4
 class PheromonExploration(Pheromon):
5
 class PheromonExploration(Pheromon):
5
     pass
6
     pass

+ 1 - 0
intelligine/synergy/object/ant/PheromonHome.py View File

1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
2
 
2
 
3
 
3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4
 class PheromonHome(Pheromon):
5
 class PheromonHome(Pheromon):
5
     pass
6
     pass