2016-09-26 21:01:27 +00:00
|
|
|
import ImageIO
|
2018-02-17 15:14:53 +00:00
|
|
|
import UIKit
|
2016-09-26 21:01:27 +00:00
|
|
|
|
|
|
|
/// Responsible for storing and updating the frames of a single GIF.
|
|
|
|
class FrameStore {
|
|
|
|
|
2016-11-13 22:46:53 +00:00
|
|
|
/// Total duration of one animation loop
|
|
|
|
var loopDuration: TimeInterval = 0
|
|
|
|
|
|
|
|
/// Flag indicating if number of loops has been reached
|
|
|
|
var isFinished: Bool = false
|
|
|
|
|
|
|
|
/// Desired number of loops, <= 0 for infinite loop
|
|
|
|
let loopCount: Int
|
|
|
|
|
|
|
|
/// Index of current loop
|
|
|
|
var currentLoop = 0
|
|
|
|
|
2016-09-26 21:01:27 +00:00
|
|
|
/// Maximum duration to increment the frame timer with.
|
|
|
|
let maxTimeStep = 1.0
|
|
|
|
|
|
|
|
/// An array of animated frames from a single GIF image.
|
|
|
|
var animatedFrames = [AnimatedFrame]()
|
|
|
|
|
|
|
|
/// The target size for all frames.
|
|
|
|
let size: CGSize
|
|
|
|
|
|
|
|
/// The content mode to use when resizing.
|
|
|
|
let contentMode: UIViewContentMode
|
|
|
|
|
|
|
|
/// Maximum number of frames to load at once
|
|
|
|
let bufferFrameCount: Int
|
|
|
|
|
|
|
|
/// The total number of frames in the GIF.
|
|
|
|
var frameCount = 0
|
|
|
|
|
|
|
|
/// A reference to the original image source.
|
|
|
|
var imageSource: CGImageSource
|
|
|
|
|
|
|
|
/// The index of the current GIF frame.
|
|
|
|
var currentFrameIndex = 0 {
|
|
|
|
didSet {
|
|
|
|
previousFrameIndex = oldValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The index of the previous GIF frame.
|
|
|
|
var previousFrameIndex = 0 {
|
|
|
|
didSet {
|
|
|
|
preloadFrameQueue.async {
|
|
|
|
self.updatePreloadedFrames()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Time elapsed since the last frame change. Used to determine when the frame should be updated.
|
|
|
|
var timeSinceLastFrameChange: TimeInterval = 0.0
|
|
|
|
|
|
|
|
/// Specifies whether GIF frames should be resized.
|
|
|
|
var shouldResizeFrames = true
|
|
|
|
|
|
|
|
/// Dispatch queue used for preloading images.
|
|
|
|
private lazy var preloadFrameQueue: DispatchQueue = {
|
|
|
|
return DispatchQueue(label: "co.kaishin.Gifu.preloadQueue")
|
|
|
|
}()
|
|
|
|
|
|
|
|
/// The current image frame to show.
|
|
|
|
var currentFrameImage: UIImage? {
|
|
|
|
return frame(at: currentFrameIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The current frame duration
|
|
|
|
var currentFrameDuration: TimeInterval {
|
|
|
|
return duration(at: currentFrameIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Is this image animatable?
|
|
|
|
var isAnimatable: Bool {
|
|
|
|
return imageSource.isAnimatedGIF
|
|
|
|
}
|
|
|
|
|
2016-10-01 11:41:22 +00:00
|
|
|
/// Creates an animator instance from raw GIF image data and an `Animatable` delegate.
|
2016-09-26 21:01:27 +00:00
|
|
|
///
|
|
|
|
/// - parameter data: The raw GIF image data.
|
|
|
|
/// - parameter delegate: An `Animatable` delegate.
|
2016-11-13 22:46:53 +00:00
|
|
|
init(data: Data, size: CGSize, contentMode: UIViewContentMode, framePreloadCount: Int, loopCount: Int) {
|
2016-09-26 21:01:27 +00:00
|
|
|
let options = [String(kCGImageSourceShouldCache): kCFBooleanFalse] as CFDictionary
|
|
|
|
self.imageSource = CGImageSourceCreateWithData(data as CFData, options) ?? CGImageSourceCreateIncremental(options)
|
|
|
|
self.size = size
|
|
|
|
self.contentMode = contentMode
|
|
|
|
self.bufferFrameCount = framePreloadCount
|
2016-11-13 22:46:53 +00:00
|
|
|
self.loopCount = loopCount
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Frames
|
|
|
|
/// Loads the frames from an image source, resizes them, then caches them in `animatedFrames`.
|
2017-07-02 22:19:42 +00:00
|
|
|
func prepareFrames(_ completionHandler: (() -> Void)? = nil) {
|
2016-09-26 21:01:27 +00:00
|
|
|
frameCount = Int(CGImageSourceGetCount(imageSource))
|
|
|
|
animatedFrames.reserveCapacity(frameCount)
|
|
|
|
preloadFrameQueue.async {
|
|
|
|
self.setupAnimatedFrames()
|
2018-01-01 20:12:33 +00:00
|
|
|
completionHandler?()
|
2016-09-26 21:01:27 +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 frame(at index: Int) -> UIImage? {
|
|
|
|
return animatedFrames[safe: index]?.image
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the duration at a particular index.
|
|
|
|
///
|
|
|
|
/// - parameter index: The index of the duration.
|
|
|
|
/// - returns: The duration of the given frame.
|
|
|
|
func duration(at index: Int) -> TimeInterval {
|
2017-07-02 22:19:42 +00:00
|
|
|
return animatedFrames[safe: index]?.duration ?? TimeInterval.infinity
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks whether the frame should be changed and calls a handler with the results.
|
|
|
|
///
|
|
|
|
/// - parameter duration: A `CFTimeInterval` value that will be used to determine whether frame should be changed.
|
|
|
|
/// - parameter handler: A function that takes a `Bool` and returns nothing. It will be called with the frame change result.
|
|
|
|
func shouldChangeFrame(with duration: CFTimeInterval, handler: (Bool) -> Void) {
|
|
|
|
incrementTimeSinceLastFrameChange(with: duration)
|
|
|
|
|
|
|
|
if currentFrameDuration > timeSinceLastFrameChange {
|
|
|
|
handler(false)
|
|
|
|
} else {
|
|
|
|
resetTimeSinceLastFrameChange()
|
|
|
|
incrementCurrentFrameIndex()
|
|
|
|
handler(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private extension FrameStore {
|
|
|
|
/// Whether preloading is needed or not.
|
|
|
|
var preloadingIsNeeded: Bool {
|
|
|
|
return bufferFrameCount < frameCount - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Optionally loads a single frame from an image source, resizes it if required, then returns an `UIImage`.
|
|
|
|
///
|
|
|
|
/// - parameter index: The index of the frame to load.
|
|
|
|
/// - returns: An optional `UIImage` instance.
|
|
|
|
func loadFrame(at index: Int) -> UIImage? {
|
2017-07-02 22:19:42 +00:00
|
|
|
guard let imageRef = CGImageSourceCreateImageAtIndex(imageSource, index, nil) else { return nil }
|
2016-09-26 21:01:27 +00:00
|
|
|
let image = UIImage(cgImage: imageRef)
|
|
|
|
let scaledImage: UIImage?
|
|
|
|
|
|
|
|
if shouldResizeFrames {
|
|
|
|
switch self.contentMode {
|
|
|
|
case .scaleAspectFit: scaledImage = image.constrained(by: size)
|
|
|
|
case .scaleAspectFill: scaledImage = image.filling(size: size)
|
|
|
|
default: scaledImage = image.resized(to: size)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
scaledImage = image
|
|
|
|
}
|
|
|
|
|
|
|
|
return scaledImage
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Updates the frames by preloading new ones and replacing the previous frame with a placeholder.
|
|
|
|
func updatePreloadedFrames() {
|
|
|
|
if !preloadingIsNeeded { return }
|
|
|
|
animatedFrames[previousFrameIndex] = animatedFrames[previousFrameIndex].placeholderFrame
|
|
|
|
|
|
|
|
preloadIndexes(withStartingIndex: currentFrameIndex).forEach { index in
|
|
|
|
let currentAnimatedFrame = animatedFrames[index]
|
|
|
|
if !currentAnimatedFrame.isPlaceholder { return }
|
2016-10-01 11:41:22 +00:00
|
|
|
animatedFrames[index] = currentAnimatedFrame.makeAnimatedFrame(with: loadFrame(at: index))
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Increments the `timeSinceLastFrameChange` property with a given duration.
|
|
|
|
///
|
|
|
|
/// - parameter duration: An `NSTimeInterval` value to increment the `timeSinceLastFrameChange` property with.
|
|
|
|
func incrementTimeSinceLastFrameChange(with duration: TimeInterval) {
|
|
|
|
timeSinceLastFrameChange += min(maxTimeStep, duration)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensures that `timeSinceLastFrameChange` remains accurate after each frame change by substracting the `currentFrameDuration`.
|
|
|
|
func resetTimeSinceLastFrameChange() {
|
|
|
|
timeSinceLastFrameChange -= currentFrameDuration
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Increments the `currentFrameIndex` property.
|
|
|
|
func incrementCurrentFrameIndex() {
|
2016-10-01 11:41:22 +00:00
|
|
|
currentFrameIndex = increment(frameIndex: currentFrameIndex)
|
2016-11-13 22:46:53 +00:00
|
|
|
if isLastLoop(loopIndex: currentLoop) && isLastFrame(frameIndex: currentFrameIndex) {
|
|
|
|
isFinished = true
|
|
|
|
} else if currentFrameIndex == 0 {
|
|
|
|
currentLoop = currentLoop + 1
|
|
|
|
}
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Increments a given frame index, taking into account the `frameCount` and looping when necessary.
|
|
|
|
///
|
|
|
|
/// - parameter index: The `Int` value to increment.
|
|
|
|
/// - parameter byValue: The `Int` value to increment with.
|
|
|
|
/// - returns: A new `Int` value.
|
2016-10-01 11:41:22 +00:00
|
|
|
func increment(frameIndex: Int, by value: Int = 1) -> Int {
|
|
|
|
return (frameIndex + value) % frameCount
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
2016-11-13 22:46:53 +00:00
|
|
|
/// Indicates if current frame is the last one.
|
|
|
|
/// - parameter frameIndex: Index of current frame.
|
|
|
|
/// - returns: True if current frame is the last one.
|
|
|
|
func isLastFrame(frameIndex: Int) -> Bool {
|
|
|
|
return frameIndex == frameCount - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Indicates if current loop is the last one. Always false for infinite loops.
|
|
|
|
/// - parameter loopIndex: Index of current loop.
|
|
|
|
/// - returns: True if current loop is the last one.
|
|
|
|
func isLastLoop(loopIndex: Int) -> Bool {
|
|
|
|
return loopIndex == loopCount - 1
|
|
|
|
}
|
|
|
|
|
2016-09-26 21:01:27 +00:00
|
|
|
/// Returns the indexes of the frames to preload based on a starting frame index.
|
|
|
|
///
|
|
|
|
/// - parameter index: Starting index.
|
|
|
|
/// - returns: An array of indexes to preload.
|
|
|
|
func preloadIndexes(withStartingIndex index: Int) -> [Int] {
|
2016-10-01 11:41:22 +00:00
|
|
|
let nextIndex = increment(frameIndex: index)
|
|
|
|
let lastIndex = increment(frameIndex: index, by: bufferFrameCount)
|
2016-09-26 21:01:27 +00:00
|
|
|
|
|
|
|
if lastIndex >= nextIndex {
|
|
|
|
return [Int](nextIndex...lastIndex)
|
|
|
|
} else {
|
|
|
|
return [Int](nextIndex..<frameCount) + [Int](0...lastIndex)
|
|
|
|
}
|
|
|
|
}
|
2016-11-13 22:46:53 +00:00
|
|
|
|
2016-09-26 21:01:27 +00:00
|
|
|
func setupAnimatedFrames() {
|
2016-11-13 22:46:53 +00:00
|
|
|
resetAnimatedFrames()
|
|
|
|
|
|
|
|
var duration: TimeInterval = 0
|
|
|
|
|
|
|
|
(0..<frameCount).forEach { index in
|
|
|
|
let frameDuration = CGImageFrameDuration(with: imageSource, atIndex: index)
|
|
|
|
duration += min(frameDuration, maxTimeStep)
|
2017-07-02 22:19:42 +00:00
|
|
|
animatedFrames += [AnimatedFrame(image: nil, duration: frameDuration)]
|
2016-11-13 22:46:53 +00:00
|
|
|
|
|
|
|
if index > bufferFrameCount { return }
|
|
|
|
animatedFrames[index] = animatedFrames[index].makeAnimatedFrame(with: loadFrame(at: index))
|
|
|
|
}
|
|
|
|
|
|
|
|
self.loopDuration = duration
|
2016-09-26 21:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Reset animated frames.
|
|
|
|
func resetAnimatedFrames() {
|
|
|
|
animatedFrames = []
|
|
|
|
}
|
|
|
|
}
|