diff --git a/src/Dodge/Creature/YourControl.hs b/src/Dodge/Creature/YourControl.hs index 979578e9f..41cdb35bc 100644 --- a/src/Dodge/Creature/YourControl.hs +++ b/src/Dodge/Creature/YourControl.hs @@ -19,13 +19,20 @@ import qualified SDL -- | The AI equivalent for your control. yourControl :: Creature -> World -> World yourControl cr w - | inTermFocus w = w & updateUsingInput -- do we really want to do this? | inputFocus w = w + | intopinv = w & cWorld . lWorld . creatures . ix (_crID cr) + %~ wasdWithAiming w (_mvSpeed $ _crMvType cr) | otherwise = w & cWorld . lWorld . creatures . ix (_crID cr) %~ (wasdWithAiming w (_mvSpeed $ _crMvType cr) . mouseActionsCr (_mouseButtons (_input w))) & updateUsingInput + where + intopinv = fromMaybe False $ do + subinv <- w ^? hud . hudElement . subInventory + Just $ case subinv of + NoSubInventory -> True + _ -> False --dimCreatureLight :: Creature -> World -> World --dimCreatureLight cr = cWorld . lWorld . tempLightSources .:~ tlsTimeRadColPos 1 300 0.1 (addZ 100 $ _crPos cr) diff --git a/src/Dodge/SelectionSections.hs b/src/Dodge/SelectionSections.hs index baf14f14b..50ae087fa 100644 --- a/src/Dodge/SelectionSections.hs +++ b/src/Dodge/SelectionSections.hs @@ -20,7 +20,7 @@ scrollSelectionSections yi sss -- when is this used? it needs to correctly set the cursor firstPosSelectionSections :: SelectionSections a -> SelectionSections a firstPosSelectionSections sss = fromMaybe sss $ do - (i, j, si) <- ssLookupMin sss + (i, j, _) <- ssLookupMin sss return $ sss & sssSelPos ?~ (i, j) @@ -34,7 +34,7 @@ firstPosSelectionSections sss = fromMaybe sss $ do scrollUpSelectionSections :: SelectionSections a -> SelectionSections a scrollUpSelectionSections sss = fromMaybe (firstPosSelectionSections sss) $ do (i, j) <- sss ^? sssSelPos . _Just - (i', j', si) <- ssLookupUp i j sss + (i', j', _) <- ssLookupUp i j sss return $ sss & sssSelPos ?~ (i', j') -- & sssSections . ix i' . ssCursor ?~ SectionCursor j' j' (_siHeight si) (_siColor si) @@ -42,8 +42,7 @@ scrollUpSelectionSections sss = fromMaybe (firstPosSelectionSections sss) $ do scrollDownSelectionSections :: SelectionSections a -> SelectionSections a scrollDownSelectionSections sss = fromMaybe (firstPosSelectionSections sss) $ do (i, j) <- sss ^? sssSelPos . _Just - -- j <- sss ^? sssSections . ix i . ssCursor . _Just . scurSel - (i', j', si) <- ssLookupDown i j sss + (i', j', _) <- ssLookupDown i j sss return $ sss & sssSelPos ?~ (i', j') -- & sssSections . ix i' . ssCursor ?~ SectionCursor j' j' (_siHeight si) (_siColor si) @@ -53,7 +52,7 @@ ssSetCursor :: SelectionSections a -> SelectionSections a ssSetCursor f sss = fromMaybe sss $ do - (i, j, si) <- f sss + (i, j, _) <- f sss return $ sss & sssSelPos ?~ (i, j) @@ -120,5 +119,5 @@ ssLookupGE' i sss = do Just (j', si) -> return (i', j', si) Nothing -> ssLookupGT' i' sss -getIthPos :: Int -> IM.IntMap (SelectionItem a) -> Int -getIthPos i sm = sum . fmap _siHeight . fst $ IM.split i sm +--getIthPos :: Int -> IM.IntMap (SelectionItem a) -> Int +--getIthPos i sm = sum . fmap _siHeight . fst $ IM.split i sm