Cleanup enough to make haddock work
This commit is contained in:
+13
-13
@@ -415,8 +415,8 @@ chaseAI w (f,g') cr =
|
||||
---- $ mvForward 2.5 cid $ randomTurn $ turnTowardSpeed 0.05 p cid w
|
||||
---- | dist p cpos < 10 -> replaceAction [] w
|
||||
---- | x == 0 -> replaceAction [] w
|
||||
---- -- | not (canSeePoint cid p w) -> replaceAction [PathTo p] w
|
||||
---- -- | not (canSeePoint cid p w) -> replaceAction [] w
|
||||
---- -- | not (canSeePoint cid p w) -> replaceAction [PathTo p] w
|
||||
---- -- | not (canSeePoint cid p w) -> replaceAction [] w
|
||||
---- | angleVV (unitVectorAtAngle (_crDir cr)) (p -.- cpos) > pi/4
|
||||
---- -> replaceAction [MoveToFor p (max 0 (x-1))] $ turnTowardSpeed 0.05 p cid w
|
||||
---- | otherwise -> replaceAction [MoveToFor p (max 0 (x-1))]
|
||||
@@ -526,7 +526,7 @@ miniAI w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ turnCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -646,7 +646,7 @@ strafeOrChargeAI inRange outRange w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ strafeCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -825,8 +825,8 @@ launcherAI inRange outRange w (f,g) cr =
|
||||
| otherwise = 0
|
||||
curveLeftProb = 20
|
||||
curveRightProb = 20
|
||||
-- | dist cpos ypos < 200 = 1
|
||||
-- | otherwise = 0
|
||||
-- | dist cpos ypos < 200 = 1
|
||||
-- | otherwise = 0
|
||||
fireActions = -- TurnToward ypos :
|
||||
(evalState (takeOneWeighted
|
||||
[curveLeftProb,curveRightProb
|
||||
@@ -921,7 +921,7 @@ launcherAI inRange outRange w (f,g) cr =
|
||||
-> ( (f , g')
|
||||
, Just $ cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g') , Just cr)
|
||||
(Guard p p':_) | dist ypos cpos < 900 && canSeeFireVisionAny cid (_yourID w) w
|
||||
-> ( ( f , g')
|
||||
@@ -1161,7 +1161,7 @@ circleClockwiseAI inRange outRange w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ strafeCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -1269,7 +1269,7 @@ twitchMissAI inRange outRange w (f,g) cr =
|
||||
-> ( (f , g')
|
||||
, Just $ strafeCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Guard p p':_) | dist ypos cpos < 900 && canSeeFireVisionAny cid (_yourID w) w
|
||||
-> ( ( f , g')
|
||||
@@ -1377,7 +1377,7 @@ closeToRangeAI inRange outRange w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ strafeCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -1483,7 +1483,7 @@ suppressShooterAI w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ turnCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -1587,7 +1587,7 @@ basicShooterAI w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ turnCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- -$ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
@@ -1689,7 +1689,7 @@ sniperAI w (f,g) cr =
|
||||
-> ( (f , g)
|
||||
, Just $ turnCloseSlow ypos cr
|
||||
) -- no longer chase if see you when reloading
|
||||
-- $ replaceAction [] w
|
||||
-- $ replaceAction [] w
|
||||
| otherwise -> ( (f , g) , Just cr)
|
||||
(Search i:gls) | i == 0 -> ( (f , g) , replaceAction [] cr)
|
||||
| otherwise
|
||||
|
||||
Reference in New Issue
Block a user