Browse Source

add/rewrite TODOs

Bastien Sevajol 6 years ago
parent
commit
38e8e37b5a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      opencombat/simulation/physics.py

+ 2 - 2
opencombat/simulation/physics.py View File

@@ -21,7 +21,7 @@ class TileMoveCostComputer(MoveCostComputer):
21 21
         next_node: str,
22 22
         unknown,
23 23
     ) -> float:
24
-        # TODO: Objets/IT qui compute les couts de déplacement
24
+        # TODO #MoveCost: Write move cost system
25 25
 
26 26
         if not tile.property('traversable_by_man'):
27 27
             return 100
@@ -62,7 +62,7 @@ class TilePhysics(TMXPhysics):
62 62
             value_name=opacity_property_name,
63 63
         )
64 64
 
65
-        # FIXME: This algo is not ok, it is for test
65
+        # TODO #Visibility: Write visibility system
66 66
         actual_opacity = 0
67 67
         for i, path_opacity in enumerate(path_opacities):
68 68
             actual_opacity += path_opacity