Browse Source

remove old comments

Bastien Sevajol 9 years ago
parent
commit
74aaf9f35b
2 changed files with 2 additions and 25 deletions
  1. 2 16
      config.py
  2. 0 9
      run.py

+ 2 - 16
config.py View File

@@ -2,24 +2,10 @@ from intelligine.core.Context import Context
2 2
 from intelligine.synergy.Simulation import Simulation
3 3
 from intelligine.display.Pygame import Pygame
4 4
 from intelligine.display.pygame.visualisation import visualisation as pygame_visualisation
5
-from intelligine.sandbox.colored.colors_colonys import collections
5
+#from intelligine.sandbox.colored.colors_colonys import collections
6 6
 # TODO: influencer avec argument python
7
-#from intelligine.sandbox.exploration.collections import collections
7
+from intelligine.sandbox.exploration.collections import collections
8 8
 
9
-"""
10
- TODO:
11
- * AttackAction :: comment choisir entre les actions ?
12
-
13
- * pheromones:
14
-   cf. doc papier
15
-   + Pour le "pt de ressource": Poser un objet qui, lorsque on applique la position:
16
-     L'objet doit pouvoir occuper plusieurs positions (gros objet)
17
-     Il a donc * une position de reference
18
-               * une liste de positions occupe
19
-               * dans les metas cette liste de position contient la reference de l'objet
20
-               *
21
-
22
-"""
23 9
 
24 10
 config = {
25 11
     'app': {

+ 0 - 9
run.py View File

@@ -2,15 +2,6 @@ from os import getcwd
2 2
 from sys import path as ppath
3 3
 ppath.insert(1,getcwd()+'/modules') # TODO: win32 compatibilite (python path)
4 4
 
5
-
6
-"""
7
-TODO:
8
- * Objects "dur" (terre); ne pas les avoir dans les objet a calculer sans cesse (INERTE)
9
- * SlightyTurn
10
-"""
11
-
12
-
13
-
14 5
 from synergine.core.Core import Core
15 6
 from config import config
16 7