Allow mouse click interaction for nearby objects
This commit is contained in:
+12
-44
@@ -18,7 +18,7 @@ updateWheelEvent :: Int -> World -> World
|
||||
updateWheelEvent yi w = case w ^. hud . hudElement . subInventory of
|
||||
NoSubInventory -> updateBaseWheelEvent yi w
|
||||
ExamineInventory -> updateBaseWheelEvent yi w
|
||||
CombineInventory{} -> w & moveCombineSel yi
|
||||
CombineInventory{} -> moveCombineSel yi w
|
||||
DisplayTerminal tmid -> terminalWheelEvent yi tmid w
|
||||
|
||||
updateBaseWheelEvent :: Int -> World -> World
|
||||
@@ -27,17 +27,15 @@ updateBaseWheelEvent yi w
|
||||
| bdown ButtonRight = case _rbOptions w of
|
||||
EquipOptions{} -> w & rbOptions . opSel %~ scrollRBOption yi rbscrollmax
|
||||
NoRightButtonOptions -> selectedItemScroll yi w
|
||||
| bdown ButtonLeft = w & wCam . camZoom +~ y
|
||||
| invKeyDown = changeSwapSel yi w
|
||||
| bdown ButtonLeft = w & wCam . camZoom +~ fromIntegral yi
|
||||
| ScancodeCapsLock `M.member` _pressedKeys (_input w) = changeSwapSel yi w
|
||||
| otherwise = scrollAugInvSel yi w
|
||||
where
|
||||
invKeyDown = ScancodeCapsLock `M.member` _pressedKeys (_input w)
|
||||
y = fromIntegral yi
|
||||
bdown b = b `M.member` _mouseButtons (_input w)
|
||||
bdown b = w & has (input . mouseButtons . ix b)
|
||||
rbscrollmax = fromMaybe 1 $ do
|
||||
invid <- you w ^? crManipulation . manObject . imSelectedItem
|
||||
esite <- you w ^? crInv . ix invid . itUse . uequipEffect . eeType
|
||||
return $ length $ eqSiteToPositions esite
|
||||
return . length $ eqSiteToPositions esite
|
||||
|
||||
selectedItemScroll :: Int -> World -> World
|
||||
selectedItemScroll scrollamount w = fromMaybe w $ do
|
||||
@@ -116,28 +114,15 @@ moveCombineSel yi =
|
||||
sss <- ci ^? ciSections
|
||||
return $ ci & ciSelection %~ scrollSelectionSections yi sss
|
||||
|
||||
--moveSubSel :: Int -> Int -> World -> World
|
||||
--moveSubSel yi maxyi =
|
||||
-- hud . hudElement . subInventory . subInvMSel . _Just
|
||||
-- %~ ((`mod` maxyi) . subtract yi)
|
||||
|
||||
guardDisconnectedID :: Int -> World -> World -> World
|
||||
guardDisconnectedID tmid w w' = case w ^? cWorld . lWorld . terminals . ix tmid . tmStatus of
|
||||
Just TerminalReady -> w'
|
||||
_ -> w
|
||||
|
||||
terminalWheelEvent :: Int -> Int -> World -> World
|
||||
terminalWheelEvent yi tmid w
|
||||
| rbDown =
|
||||
guardDisconnectedID tmid w $
|
||||
w
|
||||
& cWorld . lWorld . terminals . ix tmid %~ updatetermsubsel
|
||||
| otherwise =
|
||||
guardDisconnectedID tmid w $
|
||||
w
|
||||
& cWorld . lWorld . terminals . ix tmid %~ updatetermsel
|
||||
| w & has (input . mouseButtons . ix ButtonRight)
|
||||
, Just TerminalReady <- w ^? cWorld . lWorld . terminals . ix tmid . tmStatus =
|
||||
w & cWorld . lWorld . terminals . ix tmid %~ updatetermsubsel
|
||||
| Just TerminalReady <- w ^? cWorld . lWorld . terminals . ix tmid . tmStatus =
|
||||
w & cWorld . lWorld . terminals . ix tmid %~ updatetermsel
|
||||
| otherwise = w
|
||||
where
|
||||
rbDown = ButtonRight `M.member` _mouseButtons (_input w)
|
||||
updatetermsel tm = case tm ^? tmInput . tiSel of
|
||||
Nothing -> tm & tmInput . tiSel .~ (0, 0)
|
||||
Just (i, _) ->
|
||||
@@ -151,7 +136,7 @@ terminalWheelEvent yi tmid w
|
||||
setInput i j tm =
|
||||
tm
|
||||
& tmInput . tiSel .~ (i, j)
|
||||
& tmInput . tiText .~ (comstr ++ arg)
|
||||
& tmInput . tiText .~ comstr ++ arg
|
||||
where
|
||||
comstr = scrollCommandStrings w tm !! i
|
||||
tc = scrollCommands tm !! i
|
||||
@@ -163,23 +148,6 @@ scrollRBOption dy ymax
|
||||
| dy > 0 = max 0 . subtract dy
|
||||
| otherwise = id
|
||||
|
||||
--moveTweakSel :: Int -> World -> World
|
||||
--moveTweakSel i w = case yourSelectedItem w ^? _Just . itTweaks . tweakParams of
|
||||
-- Just l -> moveSubSel i (length l) w
|
||||
-- _ -> w
|
||||
|
||||
--changeTweakParam :: Maybe Int -> Int -> World -> World
|
||||
--changeTweakParam mi i w = fromMaybe w $ do
|
||||
-- curpos <- you w ^? crManipulation . manObject . imSelectedItem
|
||||
-- paramid <- mi
|
||||
-- params <- yourSelectedItem w ^? _Just . itTweaks . tweakParams . ix paramid
|
||||
-- let x = (_tweakVal params + i) `mod` _tweakMax params
|
||||
-- return $
|
||||
-- w & cWorld . lWorld . creatures . ix 0 . crInv . ix curpos
|
||||
-- %~ ( (itTweaks . tweakParams . ix paramid . tweakVal .~ x)
|
||||
-- . doTweak (_tweakType params) x
|
||||
-- )
|
||||
|
||||
scrollCommands :: Terminal -> [TerminalCommand]
|
||||
scrollCommands = (nullCommand :) . _tmScrollCommands
|
||||
|
||||
|
||||
Reference in New Issue
Block a user