LambdaHack-0.2.8: Game/LambdaHack/Common/Time.hs
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-- | Game time and speed.
module Game.LambdaHack.Common.Time
( Time, timeZero, timeClip, timeTurn
, timeAdd, timeFit, timeNegate, timeScale, timeEpsilon
, timeToDigit
, Speed, toSpeed, speedZero, speedNormal, speedScale, speedAdd, speedNegate
, ticksPerMeter, traveled, speedFromWeight, rangeFromSpeed
) where
import Data.Binary
import qualified Data.Char as Char
import Data.Int (Int64)
-- | Game time in ticks. The time dimension.
-- One tick is 1 microsecond (one millionth of a second),
-- one turn is 0.5 s.
newtype Time = Time Int64
deriving (Show, Eq, Ord, Enum)
instance Binary Time where
put (Time n) = put n
get = fmap Time get
-- | Start of the game time, or zero lenght time interval.
timeZero :: Time
timeZero = Time 0
-- | The smallest unit of time. Do not export, because the proportion
-- of turn to tick is an implementation detail.
-- The significance of this detail is only that it determines resolution
-- of the time dimension.
_timeTick :: Time
_timeTick = Time 1
-- | An infinitesimal time period.
timeEpsilon :: Time
timeEpsilon = _timeTick
-- TODO: don't have a fixed time, but instead set it at 1/3 or 1/4
-- of timeTurn depending on level. Clips are a UI feature
-- after all, so should depend on the user situation.
-- | At least once per clip all moves are resolved and a frame
-- or a frame delay is generated.
-- Currently one clip is 0.1 s, but it may change,
-- and the code should not depend on this fixed value.
timeClip :: Time
timeClip = Time 100000
-- | One turn is 0.5 s. The code may depend on that.
-- Actors at normal speed (2 m/s) take one turn to move one tile (1 m by 1 m).
timeTurn :: Time
timeTurn = Time 500000
-- | This many turns fit in a single second.
turnsInSecond :: Int64
turnsInSecond = 2
-- | This many ticks fits in a single second. Do not export,
_ticksInSecond :: Int64
_ticksInSecond =
let Time ticksInTurn = timeTurn
in ticksInTurn * turnsInSecond
-- | Time addition.
timeAdd :: Time -> Time -> Time
timeAdd (Time t1) (Time t2) = Time (t1 + t2)
-- | How many time intervals of the latter kind fits in an interval
-- of the former kind.
timeFit :: Time -> Time -> Int
timeFit (Time t1) (Time t2) = fromIntegral $ t1 `div` t2
-- | Negate a time interval. Can be used to subtract from a time
-- or to reverse the ordering on time.
timeNegate :: Time -> Time
timeNegate (Time t) = Time (-t)
-- | Scale time by an @Int@ scalar value.
timeScale :: Time -> Int -> Time
timeScale (Time t) s = Time (t * fromIntegral s)
-- | Represent the main 10 thresholds of a time range by digits,
-- given the total length of the time range.
timeToDigit :: Time -> Time -> Char
timeToDigit (Time maxT) (Time t) =
let k = 10 * t `div` maxT
digit | k > 9 = '*'
| k < 0 = '-'
| otherwise = Char.intToDigit $ fromIntegral k
in digit
-- | Speed in meters per 1 million seconds (m/Ms).
-- Actors at normal speed (2 m/s) take one time turn (0.5 s)
-- to move one tile (1 m by 1 m).
newtype Speed = Speed Int64
deriving (Show, Eq, Ord)
instance Binary Speed where
put (Speed n) = put n
get = fmap Speed get
-- | Number of seconds in a kilo-second.
sInMs :: Int64
sInMs = 1000000
-- | Constructor for content definitions.
toSpeed :: Double -> Speed
toSpeed s = Speed $ round $ s * fromIntegral sInMs
-- | No movement possible at that speed.
speedZero :: Speed
speedZero = Speed 0
-- | Normal speed (2 m/s) that suffices to move one tile in one turn.
speedNormal :: Speed
speedNormal = Speed $ 2 * sInMs
-- | Scale speed by an @Int@ scalar value.
speedScale :: Rational -> Speed -> Speed
speedScale s (Speed v) = Speed (round $ fromIntegral v * s)
-- | Speed addition.
speedAdd :: Speed -> Speed -> Speed
speedAdd (Speed s1) (Speed s2) = Speed (s1 + s2)
-- | Speed negation.
speedNegate :: Speed -> Speed
speedNegate (Speed n) = Speed (-n)
-- | The number of time ticks it takes to walk 1 meter at the given speed.
ticksPerMeter :: Speed -> Time
ticksPerMeter (Speed v) = Time $ _ticksInSecond * sInMs `div` v
-- | Distance in meters (so also in tiles, given the chess metric)
-- traveled in a given time by a body with a given speed.
traveled :: Speed -> Time -> Int
traveled (Speed v) (Time t) =
fromIntegral $ v * t `div` (_ticksInSecond * sInMs)
-- | Calculate projectile speed from item weight in grams
-- and speed bonus in percents.
-- See <https://github.com/kosmikus/LambdaHack/wiki/Item-statistics>.
speedFromWeight :: Int -> Int -> Speed
speedFromWeight weight bonus =
let w = fromIntegral weight
b = fromIntegral bonus
mpMs | w <= 500 = sInMs * 16
| w > 500 && w <= 2000 = sInMs * 16 * 1500 `div` (w + 1000)
| otherwise = sInMs * (10000 - w) `div` 1000
in Speed $ max 0 $ mpMs * (100 + b) `div` 100
-- | Calculate maximum range in meters of a projectile from its speed.
-- See <https://github.com/kosmikus/LambdaHack/wiki/Item-statistics>.
-- With this formula, each projectile flies for exactly one second,
-- that is 2 turns, and then drops to the ground.
-- Dividing and multiplying by 2 ensures both turns of flight
-- cover the same distance.
rangeFromSpeed :: Speed -> Int
rangeFromSpeed (Speed v) = fromIntegral $ 2 * (v `div` (sInMs * 2))