Gifu/Source/Animator.swift

117 lines
4.4 KiB
Swift
Raw Normal View History

import UIKit
import ImageIO
2015-01-23 00:02:08 +00:00
/// Responsible for storing and updating the frames of a `AnimatableImageView` instance via delegation.
2015-06-04 23:36:47 +00:00
class Animator {
2015-01-23 00:02:08 +00:00
/// Maximum duration to increment the frame timer with.
let maxTimeStep = 1.0
2015-01-23 00:02:08 +00:00
/// An array of animated frames from a single GIF image.
var animatedFrames = [AnimatedFrame]()
2015-06-04 23:24:34 +00:00
/// The size to resize all frames to
let size: CGSize
2015-06-04 23:24:34 +00:00
/// The content mode to use when resizing
let contentMode: UIViewContentMode
/// Maximum number of frames to load at once
let maxFrameCount: Int
/// The total number of frames in the GIF.
var frameCount = 0
/// A reference to the original image source.
var imageSource: CGImageSourceRef
2015-01-23 00:02:08 +00:00
/// The index of the current GIF frame.
var currentFrameIndex = 0
/// The index of the current GIF frame from the source.
var currentPreloadIndex = 0
2015-01-23 00:02:08 +00:00
/// Time elapsed since the last frame change. Used to determine when the frame should be updated.
var timeSinceLastFrameChange: NSTimeInterval = 0.0
/// Specifies whether GIF frames should be pre-scaled.
/// - seealso: `needsPrescaling` in AnimatableImageView.
var needsPrescaling = true
2015-01-23 00:02:08 +00:00
/// The current image frame to show.
var currentFrame: UIImage? {
return frameAtIndex(currentFrameIndex)
}
2015-06-04 23:24:34 +00:00
/// Is this image animatable?
var isAnimatable: Bool {
return imageSource.isAnimatedGIF
}
2015-01-23 00:02:08 +00:00
/// Initializes an animator instance from raw GIF image data and an `Animatable` delegate.
///
/// - parameter data: The raw GIF image data.
/// - parameter delegate: An `Animatable` delegate.
2015-06-04 23:36:47 +00:00
init(data: NSData, size: CGSize, contentMode: UIViewContentMode, framePreloadCount: Int) {
2015-06-04 23:24:34 +00:00
let options = [String(kCGImageSourceShouldCache): kCFBooleanFalse]
self.imageSource = CGImageSourceCreateWithData(data, options) ?? CGImageSourceCreateIncremental(options)
2015-06-04 23:24:34 +00:00
self.size = size
self.contentMode = contentMode
self.maxFrameCount = framePreloadCount
}
2015-01-22 10:54:27 +00:00
// MARK: - Frames
2015-01-23 00:02:08 +00:00
/// Loads the frames from an image source, resizes them, then caches them in `animatedFrames`.
2015-06-04 23:36:47 +00:00
func prepareFrames() {
frameCount = Int(CGImageSourceGetCount(imageSource))
let framesToProcess = min(frameCount, maxFrameCount)
animatedFrames.reserveCapacity(framesToProcess)
2016-04-24 10:19:13 +00:00
animatedFrames = (0..<framesToProcess).reduce([]) { $0 + [prepareFrame($1)] }
currentPreloadIndex = framesToProcess
}
2014-12-12 21:49:15 +00:00
/// Loads a single frame from an image source, resizes it, then returns an `AnimatedFrame`.
///
/// - parameter index: The index of the GIF image source to prepare
/// - returns: An AnimatedFrame object
func prepareFrame(index: Int) -> AnimatedFrame {
guard let frameImageRef = CGImageSourceCreateImageAtIndex(imageSource, index, nil) else {
return AnimatedFrame.null()
}
let frameDuration = CGImageSourceGIFFrameDuration(imageSource, index: index)
let image = UIImage(CGImage: frameImageRef)
let scaledImage: UIImage?
if needsPrescaling == true {
switch contentMode {
case .ScaleAspectFit: scaledImage = image.resizeAspectFit(size)
case .ScaleAspectFill: scaledImage = image.resizeAspectFill(size)
default: scaledImage = image.resize(size)
}
} else {
scaledImage = image
}
return AnimatedFrame(image: scaledImage, duration: frameDuration)
}
2015-01-23 00:02:08 +00:00
/// Returns the frame at a particular index.
///
/// - parameter index: The index of the frame.
/// - returns: An optional image at a given frame.
func frameAtIndex(index: Int) -> UIImage? {
return animatedFrames[index].image
}
2015-01-23 00:02:08 +00:00
/// Updates the current frame if necessary using the frame timer and the duration of each frame in `animatedFrames`.
///
/// - returns: An optional image at a given frame.
2015-06-04 23:24:34 +00:00
func updateCurrentFrame(duration: CFTimeInterval) -> Bool {
timeSinceLastFrameChange += min(maxTimeStep, duration)
guard let frameDuration = animatedFrames[safe:currentFrameIndex]?.duration where
frameDuration <= timeSinceLastFrameChange else { return false }
timeSinceLastFrameChange -= frameDuration
let lastFrameIndex = currentFrameIndex
2016-03-30 22:15:14 +00:00
currentFrameIndex = (currentFrameIndex + 1) % animatedFrames.count
// Loads the next needed frame for progressive loading
if animatedFrames.count < frameCount {
animatedFrames[lastFrameIndex] = prepareFrame(currentPreloadIndex)
2016-03-30 22:15:14 +00:00
currentPreloadIndex = (currentFrameIndex + 1) % frameCount
}
return true
}
}