blob: 986529344a788971d47eb584aadd9bfbe942ab5b [file] [log] [blame]
Jorim Jaggi21c39a72017-10-20 15:47:51 +02001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.server.wm;
18
Jorim Jaggif5f9e122017-10-24 18:21:09 +020019import static com.android.server.wm.AnimationAdapter.STATUS_BAR_TRANSITION_DURATION;
chaviw23012112017-12-20 15:29:04 -080020import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_AFTER_ANIM;
21import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_NONE;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020022
Jorim Jaggi21c39a72017-10-20 15:47:51 +020023import android.graphics.Point;
chaviw23012112017-12-20 15:29:04 -080024import android.graphics.Rect;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020025import android.os.SystemClock;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020026import android.view.SurfaceControl;
27import android.view.SurfaceControl.Transaction;
28import android.view.animation.Animation;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020029import android.view.animation.AnimationSet;
30import android.view.animation.Interpolator;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020031import android.view.animation.Transformation;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020032import android.view.animation.TranslateAnimation;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020033
34import com.android.server.wm.LocalAnimationAdapter.AnimationSpec;
35
36/**
37 * Animation spec for regular window animations.
38 */
39public class WindowAnimationSpec implements AnimationSpec {
40
41 private Animation mAnimation;
42 private final Point mPosition = new Point();
Jorim Jaggia5e10572017-11-15 14:36:26 +010043 private final ThreadLocal<TmpValues> mThreadLocalTmps = ThreadLocal.withInitial(TmpValues::new);
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +010044 private final boolean mCanSkipFirstFrame;
chaviw23012112017-12-20 15:29:04 -080045 private final Rect mStackBounds = new Rect();
46 private int mStackClipMode;
47 private final Rect mTmpRect = new Rect();
Jorim Jaggi21c39a72017-10-20 15:47:51 +020048
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +010049 public WindowAnimationSpec(Animation animation, Point position, boolean canSkipFirstFrame) {
chaviw23012112017-12-20 15:29:04 -080050 this(animation, position, null /* stackBounds */, canSkipFirstFrame, STACK_CLIP_NONE);
51 }
52
53 public WindowAnimationSpec(Animation animation, Point position, Rect stackBounds,
54 boolean canSkipFirstFrame, int stackClipMode) {
Jorim Jaggi21c39a72017-10-20 15:47:51 +020055 mAnimation = animation;
chaviw23012112017-12-20 15:29:04 -080056 if (position != null) {
57 mPosition.set(position.x, position.y);
58 }
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +010059 mCanSkipFirstFrame = canSkipFirstFrame;
chaviw23012112017-12-20 15:29:04 -080060 mStackClipMode = stackClipMode;
61 if (stackBounds != null) {
62 mStackBounds.set(stackBounds);
63 }
Jorim Jaggi21c39a72017-10-20 15:47:51 +020064 }
65
66 @Override
67 public boolean getDetachWallpaper() {
68 return mAnimation.getDetachWallpaper();
69 }
70
71 @Override
72 public int getBackgroundColor() {
73 return mAnimation.getBackgroundColor();
74 }
75
76 @Override
77 public long getDuration() {
78 return mAnimation.computeDurationHint();
79 }
80
81 @Override
82 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) {
Jorim Jaggia5e10572017-11-15 14:36:26 +010083 final TmpValues tmp = mThreadLocalTmps.get();
Jorim Jaggi21c39a72017-10-20 15:47:51 +020084 tmp.transformation.clear();
85 mAnimation.getTransformation(currentPlayTime, tmp.transformation);
86 tmp.transformation.getMatrix().postTranslate(mPosition.x, mPosition.y);
87 t.setMatrix(leash, tmp.transformation.getMatrix(), tmp.floats);
88 t.setAlpha(leash, tmp.transformation.getAlpha());
chaviw23012112017-12-20 15:29:04 -080089 if (mStackClipMode == STACK_CLIP_NONE) {
90 t.setWindowCrop(leash, tmp.transformation.getClipRect());
91 } else if (mStackClipMode == STACK_CLIP_AFTER_ANIM) {
92 t.setFinalCrop(leash, mStackBounds);
93 t.setWindowCrop(leash, tmp.transformation.getClipRect());
94 } else {
95 mTmpRect.set(tmp.transformation.getClipRect());
96 mTmpRect.intersect(mStackBounds);
97 t.setWindowCrop(leash, mTmpRect);
98 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +020099 }
100
101 @Override
102 public long calculateStatusBarTransitionStartTime() {
103 TranslateAnimation openTranslateAnimation = findTranslateAnimation(mAnimation);
104 if (openTranslateAnimation != null) {
105
106 // Some interpolators are extremely quickly mostly finished, but not completely. For
107 // our purposes, we need to find the fraction for which ther interpolator is mostly
108 // there, and use that value for the calculation.
109 float t = findAlmostThereFraction(openTranslateAnimation.getInterpolator());
110 return SystemClock.uptimeMillis()
111 + openTranslateAnimation.getStartOffset()
112 + (long)(openTranslateAnimation.getDuration() * t)
113 - STATUS_BAR_TRANSITION_DURATION;
114 } else {
115 return SystemClock.uptimeMillis();
116 }
117 }
118
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +0100119 @Override
120 public boolean canSkipFirstFrame() {
121 return mCanSkipFirstFrame;
122 }
123
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200124 /**
125 * Tries to find a {@link TranslateAnimation} inside the {@code animation}.
126 *
127 * @return the found animation, {@code null} otherwise
128 */
129 private static TranslateAnimation findTranslateAnimation(Animation animation) {
130 if (animation instanceof TranslateAnimation) {
131 return (TranslateAnimation) animation;
132 } else if (animation instanceof AnimationSet) {
133 AnimationSet set = (AnimationSet) animation;
134 for (int i = 0; i < set.getAnimations().size(); i++) {
135 Animation a = set.getAnimations().get(i);
136 if (a instanceof TranslateAnimation) {
137 return (TranslateAnimation) a;
138 }
139 }
140 }
141 return null;
142 }
143
144 /**
145 * Binary searches for a {@code t} such that there exists a {@code -0.01 < eps < 0.01} for which
146 * {@code interpolator(t + eps) > 0.99}.
147 */
148 private static float findAlmostThereFraction(Interpolator interpolator) {
149 float val = 0.5f;
150 float adj = 0.25f;
151 while (adj >= 0.01f) {
152 if (interpolator.getInterpolation(val) < 0.99f) {
153 val += adj;
154 } else {
155 val -= adj;
156 }
157 adj /= 2;
158 }
159 return val;
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200160 }
161
Jorim Jaggia5e10572017-11-15 14:36:26 +0100162 private static class TmpValues {
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200163 final Transformation transformation = new Transformation();
164 final float[] floats = new float[9];
165 }
166}