TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | BSD 2.0 |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A domain specific language for CoreAnimation Transformations (CATransform3D)
Instead of writing code like:
CATransform3D *theTransform = CATransform3DScale(CATransform3DMakeTranslation(1, 2, 0), 10, 10, 1);
Write code like this:
#import "NIMTransformFormatter.h"
CATransform3D theTransform = CATransform3DMakeWithFormat(@"translate(1,2) | scale(10,10,1.0)");
Or even shorter:
CATransform3D theTransform = CATransform3DMakeWithFormat(@"t(1,2) | s(10,10,1.0)");
Or if you have a reason to use the class directly.:
CATransform3D theTransform = [[NIMTransformFormatter formatterWithFormat:@"t(1,2) | s(10,10,1.0)"] CATransform3D];
And finally if you want to transform an existing CATransform3D you can use this form (thanks @ntakayama for the suggestion.):
someLayer.transform = CATransform3DWithFormat(someLayer.transform, @"t(1,2) | s(10,10,1.0)");
Currently it looks (in theory) like this in Backus–Naur Form:
<operation-name> ::= "translate" | "scale" | "rotate" | "identity"
<placeholder> ::= "%f"
<parameter> ::= <floating-point-number> | <placeholder>
<parameter-list> ::= <parameter> | <parameter-list> "," <parameter>
<operation> ::= <operation-name> "(" <parameter-list> ")"
<concat-operator> ::= "|"
<operation-list> ::= <operation> | <concat-operator> <operation-list>
(this is pretty incorrect BNF - dont rely on it yet)
The key parts to realise are operations look a bit like functions and are concatenated using the | (vertical bar) character.
Note that operation names are case insensitive and can be shortened to just the first unique character ("t" for "translate" for example).
This returns just the matrix identity. You probably won't ever need to use this,
identity()
This returns the identity matrix scaled by 10.0 X and 10.0 Y and 1.0 Z.
identity() | scale(10, 10, 1)
By default the identity matrix is implied. So the previous format is equivalent to the this one. Note if you pass in your own base transform then the operations will be relative to that transform.
scale(10, 10, 1)
We can infer the Z scale. Any parameter for a scale operation is inferred to be 1.0:
scale(10, 10)
Here's a translate operation, 100 pixels down the x-axis:
translate(-100, 0, 0)
But of course we can infer the other two axes:
translate(-100)
Let's put these together:
scale(10, 10) | translate(-100)
Let's shorten this even more
s(10,10) | t(-100)
Obviously you won't be passing in constants to every transformation. So the transformation strings are first passed through sprintf formatting. This allows you to write code that looks like:
CATransform3D *theTransform = CATransform3DMakeWithFormat(@"translate(%f,%f) | scale(10,10,1.0)", X, Y);
Creating complex transformations with multiple, nested functions is a pain. You end up making code that is fiddly and hard to change rapidly, for example if you need to reorder your transformation operations or add in another operation between other options.
Creating a transformation from using this domain specific language is extremely easy. The operations aren't nested so you can easily read the operations from left to right. You can easily reorder operations and insert operations anywhere into the operation list.
One use for this would be if you wanted to store transformations in data (in your plist or your JSON files). Having a string based representation of transforms would be quite handy. For maximuse usefulness we'd need to also support going from a matrix to a string. See the Further Ideas section
This DSL is a lot slower than doing the operations by hand:
2014-03-20 18:20:21.168 TransformTest[59794:303] Time for non-parametized expression: 0.15035
2014-03-20 18:20:21.571 TransformTest[59794:303] Time for parametized expression: 0.400879
2014-03-20 18:20:21.574 TransformTest[59794:303] Time for raw CA function calls: 0.00237203
2014-03-20 18:20:21.574 TransformTest[59794:303] Slow-down factor for non-parametrized: 63.3846
2014-03-20 18:20:21.575 TransformTest[59794:303] Slow-down factor for parametrized: 169.003
Program ended with exit code: 0
This means using a format string without parameters is about 60 times slower than performing the transformation using CA functions. And using a format string with parameters is about 170 times slower. The reason for the difference in performance is that non-parametised expressions are easily cached - and the format is only parsed once.
Is this too slow? Well it depends what you're doing with your transformations. If you're just using these transformations to compute the before and after values of an animation it might be ok. If you're doing your own animations and computing transformations at 60 fps it might be too slow.
BSD 2-Clause see LICENSE file.