element-ios/Riot/Modules/LaunchLoading/Timeline_1.swift
Neil Alexander 5d46b46339
Load animation, colour corrections, fixed launch screen
Squashed commit of the following:

commit e11d0e5894
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:59:30 2020 +0100

    Fix colour in launch screen

commit aa59e85d30
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:57:01 2020 +0100

    Display -> display

commit 6da06421be
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:55:20 2020 +0100

    P3 colours

commit b1fc009ab9
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:52:22 2020 +0100

    Update Riot.xcodeproj

commit ac1d994c6e
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:44:41 2020 +0100

    Revert changes to Images.swift and Storyboards.swift

commit 27c88f9b3b
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:25:08 2020 +0100

    Add animation source files

commit d19ccd5000
Merge: 8e5ac3f6 2ed92204
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:18:04 2020 +0100

    Fix launch screen and update loading screen

    Merge commit '2ed92204' into rebranding

commit 2ed922045c
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date:   Fri Jul 10 17:13:56 2020 +0100

    Fix launch screen, smooth transition to loading animation
2020-07-10 17:59:57 +01:00

149 lines
7.2 KiB
Swift

// Made With Flow.
//
// DO NOT MODIFY, your changes will be lost when this file is regenerated.
//
// swiftlint:disable all
import UIKit
public class Timeline_1: Timeline {
public convenience init(view: ElementView, duration: TimeInterval, autoreverses: Bool = false, repeatCount: Float = 0) {
let animationsByLayer = Timeline_1.animationsByLayer(view: view, duration: duration)
self.init(view: view, animationsByLayer: animationsByLayer, sounds: [], duration: duration, autoreverses: autoreverses, repeatCount: repeatCount)
}
private static func animationsByLayer(view: ElementView, duration: TimeInterval) -> [CALayer: [CAKeyframeAnimation]] {
// Keyframe Animations for element
let position_x_element: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.x"
keyframeAnimation.values = [66, 65.65]
keyframeAnimation.keyTimes = [0, 1]
keyframeAnimation.timingFunctions = [.easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let position_y_element: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.y"
keyframeAnimation.values = [65, 65.5]
keyframeAnimation.keyTimes = [0, 1]
keyframeAnimation.timingFunctions = [.easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let transform_rotation_z_element: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "transform.rotation.z"
keyframeAnimation.values = [0, 3.14159, 6.28319]
keyframeAnimation.keyTimes = [0, 0.5, 1]
keyframeAnimation.timingFunctions = [.easeInEaseOut, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let bounds_size_width_element: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "bounds.size.width"
keyframeAnimation.values = [120, 120, 201]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let bounds_size_height_element: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "bounds.size.height"
keyframeAnimation.values = [120, 120, 201]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
// Keyframe Animations for rectangle
let position_x_rectangle: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.x"
keyframeAnimation.values = [60, 60.2, 100.84]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.easeInEaseOut, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let position_y_rectangle: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.y"
keyframeAnimation.values = [60, 60.2, 100.84]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.easeInEaseOut, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let bounds_size_width_rectangle: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "bounds.size.width"
keyframeAnimation.values = [120.4, 120.4, 201.67]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let bounds_size_height_rectangle: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "bounds.size.height"
keyframeAnimation.values = [120.4, 120.4, 201.67]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let path_rectangle: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "path"
keyframeAnimation.values = [CGPathCreateWithSVGString("M0.003,0.003l120.4,0 0,120.4 -120.4,0 0,-120.4zM0.003,0.003")!, CGPathCreateWithSVGString("M0.003,0.003l120.4,0 0,120.4 -120.4,0 0,-120.4zM0.003,0.003")!, CGPathCreateWithSVGString("M0.005,0.005l201.67,0 0,201.67 -201.67,0 0,-201.67zM0.005,0.005")!]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
// Keyframe Animations for element_1
let position_x_element_1: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.x"
keyframeAnimation.values = [60, 60, 100.5]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
let position_y_element_1: CAKeyframeAnimation = {
let keyframeAnimation = CAKeyframeAnimation()
keyframeAnimation.keyPath = "position.y"
keyframeAnimation.values = [60, 60, 100.5]
keyframeAnimation.keyTimes = [0, 0.125, 1]
keyframeAnimation.timingFunctions = [.linear, .easeInEaseOut]
keyframeAnimation.duration = duration
return keyframeAnimation
}()
// Organize CAKeyframeAnimations by CALayer
var animationsByLayer = [CALayer: [CAKeyframeAnimation]]()
animationsByLayer[view.rectangle.layer] = [position_x_rectangle, bounds_size_height_rectangle, bounds_size_width_rectangle, path_rectangle, position_y_rectangle]
animationsByLayer[view.element_1.layer] = [position_x_element_1, position_y_element_1]
animationsByLayer[view.element.layer] = [position_x_element, bounds_size_height_element, bounds_size_width_element, position_y_element, transform_rotation_z_element]
return animationsByLayer
}
}