MaterialMotionRuntime 6.0.1

MaterialMotionRuntime 6.0.1

TestsTested
LangLanguage Obj-CObjective C
License Apache 2
ReleasedLast Release Feb 2017

Maintained by Jeff Verkoeyen.



  • By
  • The Material Motion Authors.

Material Motion Runtime for Apple Devices

The Material Motion Runtime is a tool for describing motion declaratively.

Declarative motion: motion as data

This library does not do much on its own. What it does do, however, is enable the expression of motion as discrete units of data that can be introspected, composed, and sent over a wire.

This library encourages you to describe motion as data, or what we call plans. Plans are committed to a runtime. A runtime coordinates the creation of performers, objects responsible for translating plans into concrete execution.

Installation

Usage

Import the Material Motion Runtime framework:

@import MaterialMotionRuntime;

You will now have access to all of the APIs.

Example apps/unit tests

Check out a local copy of the repo to access the Catalog application by running the following commands:

git clone https://github.com/material-motion/material-motion-runtime-objc.git
cd material-motion-runtime-objc
pod install
open MaterialMotionRuntime.xcworkspace

Guides

  1. Architecture
  2. How to define a new plan and performer type
  3. How to commit a plan to a runtime
  4. How to commit a named plan to a runtime
  5. How to handle multiple plan types in Swift
  6. How to configure performers with named plans
  7. How to use composition to fulfill plans
  8. How to indicate continuous performance
  9. How to trace internal runtime events
  10. How to log runtime events to the console
  11. How to observe timeline events

Architecture

The Material Motion Runtime consists of two groups of APIs: a runtime/transaction object and a constellation of protocols loosely consisting of plan and performing types.

Runtime

The Runtime object is a coordinating entity whose primary responsibility is to fulfill plans by creating performers. You can create many runtimes throughout the lifetime of your application. A good rule of thumb is to have one runtime per interaction or transition.

Plan + Performing types

The Plan and Performing protocol each define the minimal characteristics required for an object to be considered either a plan or a performer, respectively, by the Material Motion Runtime.

Plans and performers have a symbiotic relationship. A plan is executed by the performer it defines. Performer behavior is configured by the provided plan instances.

Learn more about the Material Motion Runtime by reading the Starmap.

How to create a new plan and performer type

The following steps provide copy-pastable snippets of code.

Step 1: Define the plan type

Questions to ask yourself when creating a new plan type:

  • What do I want my plan/performer to accomplish?
  • Will my performer need many plans to achieve the desired outcome?
  • How can I name my plan such that it clearly communicates either a behavior or a change in state?

As general rules:

  1. Plans with an -able suffix alter the behavior of the target, often indefinitely. Examples: Draggable, Pinchable, Tossable.
  2. Plans that are verbs describe some change in state, often over a period of time. Examples: FadeIn, Tween, SpringTo.

Code snippets:

In Objective-C:

@interface <#Plan#> : NSObject
@end

@implementation <#Plan#>
@end

In Swift:

class <#Plan#>: NSObject {
}

Step 2: Define the performer type

Performers are responsible for fulfilling plans. Fulfillment is possible in a variety of ways:

See the associated links for more details on each performing type.

Note: only one instance of a type of performer per target is ever created. This allows you to register multiple plans to the same target in order to configure a performer. See How to configure performers with plans for more details.

Code snippets:

In Objective-C:

@interface <#Performer#> : NSObject <MDMPerforming>
@end

@implementation <#Performer#> {
  UIView *_target;
}

- (instancetype)initWithTarget:(id)target {
  self = [super init];
  if (self) {
    assert([target isKindOfClass:[UIView class]]);
    _target = target;
  }
  return self;
}

- (void)addPlan:(id<MDMPlan>)plan {
  <#Plan#>* <#casted plan instance#> = plan;

  // Do something with the plan.
}

@end

In Swift:

class <#Performer#>: NSObject, Performing {
  let target: UIView
  required init(target: Any) {
    self.target = target as! UIView
    super.init()
  }

  func addPlan(_ plan: Plan) {
    let <#casted plan instance#> = plan as! <#Plan#>

    // Do something with the plan.
  }
}

Step 3: Make the plan type a formal Plan

Conforming to Plan requires:

  1. that you define the type of performer your plan requires, and
  2. that your plan be copyable.

Code snippets:

In Objective-C:

@interface <#Plan#> : NSObject <MDMPlan>
@end

@implementation <#Plan#>

- (Class)performerClass {
  return [<#Plan#> class];
}

- (id)copyWithZone:(NSZone *)zone {
  return [[[self class] allocWithZone:zone] init];
}

@end

In Swift:

class <#Plan#>: NSObject, Plan {
  func performerClass() -> AnyClass {
    return <#Performer#>.self
  }
  func copy(with zone: NSZone? = nil) -> Any {
    return <#Plan#>()
  }
}

How to commit a plan to a runtime

Step 1: Create and store a reference to a runtime instance

Code snippets:

In Objective-C:

@interface MyClass ()
@property(nonatomic, strong) MDMRuntime* runtime;
@end

- (instancetype)init... {
  ...
  self.runtime = [MDMRuntime new];
  ...
}

In Swift:

class MyClass {
  let runtime = Runtime()
}

Step 2: Associate plans with targets

Code snippets:

In Objective-C:

[runtime addPlan:<#Plan instance#> to:<#View instance#>];

In Swift:

runtime.addPlan(<#Plan instance#>, to:<#View instance#>)

How to commit a named plan to a runtime

Step 1: Create and store a reference to a runtime instance

Code snippets:

In Objective-C:

@interface MyClass ()
@property(nonatomic, strong) MDMRuntime* runtime;
@end

- (instancetype)init... {
  ...
  self.runtime = [MDMRuntime new];
  ...
}

In Swift:

class MyClass {
  let runtime = Runtime()
}

Step 2: Associate named plans with targets

Code snippets:

In Objective-C:

[runtime addPlan:<#Plan instance#> named:<#name#> to:<#View instance#>];

In Swift:

runtime.addPlan(<#Plan instance#>, named:<#name#>, to:<#View instance#>)

How to handle multiple plan types in Swift

Make use of Swift's typed switch/casing to handle multiple plan types.

func addPlan(_ plan: Plan) {
  switch plan {
  case let <#plan instance 1#> as <#Plan type 1#>:
    ()

  case let <#plan instance 2#> as <#Plan type 2#>:
    ()

  case is <#Plan type 3#>:
    ()

  default:
    assert(false)
  }
}

How to configure performers with named plans

Code snippets:

In Objective-C:

@interface <#Performer#> (NamedPlanPerforming) <MDMNamedPlanPerforming>
@end

@implementation <#Performer#> (NamedPlanPerforming)

- (void)addPlan:(id<MDMNamedPlan>)plan named:(NSString *)name {
  <#Plan#>* <#casted plan instance#> = plan;

  // Do something with the plan.
}

- (void)removePlanNamed:(NSString *)name {
  // Remove any configuration associated with the given name.
}

@end

In Swift:

extension <#Performer#>: NamedPlanPerforming {
  func addPlan(_ plan: NamedPlan, named name: String) {
    let <#casted plan instance#> = plan as! <#Plan#>

    // Do something with the plan.
  }

  func removePlan(named name: String) {
    // Remove any configuration associated with the given name.
  }
}

How to use composition to fulfill plans

A composition performer is able to emit new plans using a plan emitter. This feature enables the reuse of plans and the creation of higher-order abstractions.

Step 1: Conform to ComposablePerforming and store the plan emitter

Code snippets:

In Objective-C:

@interface <#Performer#> ()
@property(nonatomic, strong) id<MDMPlanEmitting> planEmitter;
@end

@interface <#Performer#> (Composition) <MDMComposablePerforming>
@end

@implementation <#Performer#> (Composition)

- (void)setPlanEmitter:(id<MDMPlanEmitting>)planEmitter {
  self.planEmitter = planEmitter;
}

@end

In Swift:

// Store the emitter in your class' definition.
class <#Performer#>: ... {
  ...
  var emitter: PlanEmitting!
  ...
}

extension <#Performer#>: ComposablePerforming {
  var emitter: PlanEmitting!
  func setPlanEmitter(_ planEmitter: PlanEmitting) {
    emitter = planEmitter
  }
}

Step 2: Emit plans

Performers are only able to emit plans for their associated target.

Code snippets:

In Objective-C:

[self.planEmitter emitPlan:<#(nonnull id<MDMPlan>)#>];

In Swift:

emitter.emitPlan<#T##Plan#>)

How to indicate continuous performance

Performers will often perform their actions over a period of time or while an interaction is active. These types of performers are called continuous performers.

A continuous performer is able to affect the active state of the runtime by generating is-active tokens. The runtime is considered active so long as an is-active token exists and has not been terminated. Continuous performers are expected to terminate a token when its corresponding work has completed.

For example, a performer that registers a platform animation might generate a token when the animation starts. When the animation completes the token would be terminated.

Step 1: Conform to ContinuousPerforming and store the token generator

Code snippets:

In Objective-C:

@interface <#Performer#> ()
@property(nonatomic, strong) id<MDMIsActiveTokenGenerating> tokenGenerator;
@end

@interface <#Performer#> (Composition) <MDMComposablePerforming>
@end

@implementation <#Performer#> (Composition)

- (void)setIsActiveTokenGenerator:(id<MDMIsActiveTokenGenerating>)isActiveTokenGenerator {
  self.tokenGenerator = isActiveTokenGenerator;
}

@end

In Swift:

// Store the emitter in your class' definition.
class <#Performer#>: ... {
  ...
  var tokenGenerator: IsActiveTokenGenerating!
  ...
}

extension <#Performer#>: ContinuousPerforming {
  func set(isActiveTokenGenerator: IsActiveTokenGenerating) {
    tokenGenerator = isActiveTokenGenerator
  }
}

Step 2: Generate a token when some continuous work has started

You will likely need to store the token in order to be able to reference it at a later point.

Code snippets:

In Objective-C:

id<MDMIsActiveTokenable> token = [self.tokenGenerator generate];
tokenMap[animation] = token;

In Swift:

let token = tokenGenerator.generate()!
tokenMap[animation] = token

Step 3: Terminate the token when work has completed

Code snippets:

In Objective-C:

[token terminate];

In Swift:

token.terminate()

How to trace internal runtime events

Tracing allows you to observe internal events occurring within a runtime. This information may be used for the following purposes:

  • Debug logging.
  • Inspection tooling.

Use for other purposes is unsupported.

Step 1: Create a tracer class

Code snippets:

In Objective-C:

@interface <#Custom tracer#> : NSObject <MDMTracing>
@end

@implementation <#Custom tracer#>
@end

In Swift:

class <#Custom tracer#>: NSObject, Tracing {
}

Step 2: Implement methods

The documentation for the Tracing protocol enumerates the available methods.

Code snippets:

In Objective-C:

@implementation <#Custom tracer#>

- (void)didAddPlan:(id<MDMPlan>)plan to:(id)target {

}

@end

In Swift:

class <#Custom tracer#>: NSObject, Tracing {
  func didAddPlan(_ plan: Plan, to target: Any) {

  }
}

How to log runtime events to the console

Code snippets:

In Objective-C:

[runtime addTracer:[MDMConsoleLoggingTracer new]];

In Swift:

runtime.addTracer(ConsoleLoggingTracer())

How to observe timeline events

Step 1: Conform to the TimelineObserving protocol

Code snippets:

In Objective-C:

@interface <#SomeClass#> () <MDMTimelineObserving>
@end

@implementation <#SomeClass#>

- (void)timeline:(MDMTimeline *)timeline didAttachScrubber:(MDMTimelineScrubber *)scrubber {

}

- (void)timeline:(MDMTimeline *)timeline didDetachScrubber:(MDMTimelineScrubber *)scrubber {

}

- (void)timeline:(MDMTimeline *)timeline scrubberDidScrub:(NSTimeInterval)timeOffset {

}

@end

In Swift:

extension <#SomeClass#>: TimelineObserving {
  func timeline(_ timeline: Timeline, didAttach scrubber: TimelineScrubber) {
  }

  func timeline(_ timeline: Timeline, didDetach scrubber: TimelineScrubber) {
  }

  func timeline(_ timeline: Timeline, scrubberDidScrub timeOffset: TimeInterval) {
  }
}

Step 2: Add your observer to a timeline

Code snippets:

In Objective-C:

[timeline addTimelineObserver:<#(nonnull id<MDMTimelineObserving>)#>];

In Swift:

timeline.addObserver(<#T##observer: TimelineObserving##TimelineObserving#>)

Contributing

We welcome contributions!

Check out our upcoming milestones.

Learn more about our team, our community, and our contributor essentials.

License

Licensed under the Apache 2.0 license. See LICENSE for details.