blob: 57311e19bc76dee5347cb0801173903de24359df [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;
Yi Jin6c6e9ca2018-03-20 16:53:35 -070020import static com.android.server.wm.AnimationSpecProto.WINDOW;
21import static com.android.server.wm.WindowAnimationSpecProto.ANIMATION;
Lucas Dupin3e1dc202018-12-02 15:14:20 -080022import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_AFTER_ANIM;
23import static com.android.server.wm.WindowStateAnimator.STACK_CLIP_NONE;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020024
Jorim Jaggi21c39a72017-10-20 15:47:51 +020025import android.graphics.Point;
chaviw23012112017-12-20 15:29:04 -080026import android.graphics.Rect;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020027import android.os.SystemClock;
Jorim Jaggif75d1612018-02-27 15:05:21 +010028import android.util.proto.ProtoOutputStream;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020029import android.view.SurfaceControl;
30import android.view.SurfaceControl.Transaction;
31import android.view.animation.Animation;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020032import android.view.animation.AnimationSet;
33import android.view.animation.Interpolator;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020034import android.view.animation.Transformation;
Jorim Jaggif5f9e122017-10-24 18:21:09 +020035import android.view.animation.TranslateAnimation;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020036
37import com.android.server.wm.LocalAnimationAdapter.AnimationSpec;
38
Jorim Jaggif75d1612018-02-27 15:05:21 +010039import java.io.PrintWriter;
40
Jorim Jaggi21c39a72017-10-20 15:47:51 +020041/**
42 * Animation spec for regular window animations.
43 */
44public class WindowAnimationSpec implements AnimationSpec {
45
46 private Animation mAnimation;
47 private final Point mPosition = new Point();
Jorim Jaggia5e10572017-11-15 14:36:26 +010048 private final ThreadLocal<TmpValues> mThreadLocalTmps = ThreadLocal.withInitial(TmpValues::new);
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +010049 private final boolean mCanSkipFirstFrame;
Jorim Jaggiaa763cd2018-03-22 23:20:36 +010050 private final boolean mIsAppAnimation;
chaviw23012112017-12-20 15:29:04 -080051 private final Rect mStackBounds = new Rect();
52 private int mStackClipMode;
53 private final Rect mTmpRect = new Rect();
Lucas Dupin3e1dc202018-12-02 15:14:20 -080054 private final float mWindowCornerRadius;
Jorim Jaggi21c39a72017-10-20 15:47:51 +020055
Lucas Dupin3e1dc202018-12-02 15:14:20 -080056 public WindowAnimationSpec(Animation animation, Point position, boolean canSkipFirstFrame,
57 float windowCornerRadius) {
Jorim Jaggiaa763cd2018-03-22 23:20:36 +010058 this(animation, position, null /* stackBounds */, canSkipFirstFrame, STACK_CLIP_NONE,
Lucas Dupin3e1dc202018-12-02 15:14:20 -080059 false /* isAppAnimation */, windowCornerRadius);
chaviw23012112017-12-20 15:29:04 -080060 }
61
62 public WindowAnimationSpec(Animation animation, Point position, Rect stackBounds,
Lucas Dupin3e1dc202018-12-02 15:14:20 -080063 boolean canSkipFirstFrame, int stackClipMode, boolean isAppAnimation,
64 float windowCornerRadius) {
Jorim Jaggi21c39a72017-10-20 15:47:51 +020065 mAnimation = animation;
chaviw23012112017-12-20 15:29:04 -080066 if (position != null) {
67 mPosition.set(position.x, position.y);
68 }
Lucas Dupin3e1dc202018-12-02 15:14:20 -080069 mWindowCornerRadius = windowCornerRadius;
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +010070 mCanSkipFirstFrame = canSkipFirstFrame;
Jorim Jaggiaa763cd2018-03-22 23:20:36 +010071 mIsAppAnimation = isAppAnimation;
chaviw23012112017-12-20 15:29:04 -080072 mStackClipMode = stackClipMode;
73 if (stackBounds != null) {
74 mStackBounds.set(stackBounds);
75 }
Jorim Jaggi21c39a72017-10-20 15:47:51 +020076 }
77
78 @Override
Jorim Jaggi82c17862018-02-21 17:50:18 +010079 public boolean getShowWallpaper() {
80 return mAnimation.getShowWallpaper();
81 }
82
83 @Override
Jorim Jaggi21c39a72017-10-20 15:47:51 +020084 public int getBackgroundColor() {
85 return mAnimation.getBackgroundColor();
86 }
87
88 @Override
89 public long getDuration() {
90 return mAnimation.computeDurationHint();
91 }
92
93 @Override
94 public void apply(Transaction t, SurfaceControl leash, long currentPlayTime) {
Jorim Jaggia5e10572017-11-15 14:36:26 +010095 final TmpValues tmp = mThreadLocalTmps.get();
Jorim Jaggi21c39a72017-10-20 15:47:51 +020096 tmp.transformation.clear();
97 mAnimation.getTransformation(currentPlayTime, tmp.transformation);
98 tmp.transformation.getMatrix().postTranslate(mPosition.x, mPosition.y);
99 t.setMatrix(leash, tmp.transformation.getMatrix(), tmp.floats);
100 t.setAlpha(leash, tmp.transformation.getAlpha());
Vishnu Naira2977262018-07-26 13:31:26 -0700101 if (mStackClipMode == STACK_CLIP_NONE || mStackClipMode == STACK_CLIP_AFTER_ANIM) {
chaviw23012112017-12-20 15:29:04 -0800102 t.setWindowCrop(leash, tmp.transformation.getClipRect());
103 } else {
chaviw977482a2017-12-28 11:35:53 -0800104 mTmpRect.set(mStackBounds);
105 mTmpRect.intersect(tmp.transformation.getClipRect());
chaviw23012112017-12-20 15:29:04 -0800106 t.setWindowCrop(leash, mTmpRect);
107 }
Lucas Dupin3e1dc202018-12-02 15:14:20 -0800108 if (mAnimation.hasRoundedCorners() && mWindowCornerRadius > 0) {
109 t.setCornerRadius(leash, mWindowCornerRadius);
110 }
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200111 }
112
113 @Override
114 public long calculateStatusBarTransitionStartTime() {
115 TranslateAnimation openTranslateAnimation = findTranslateAnimation(mAnimation);
116 if (openTranslateAnimation != null) {
117
118 // Some interpolators are extremely quickly mostly finished, but not completely. For
119 // our purposes, we need to find the fraction for which ther interpolator is mostly
120 // there, and use that value for the calculation.
121 float t = findAlmostThereFraction(openTranslateAnimation.getInterpolator());
122 return SystemClock.uptimeMillis()
123 + openTranslateAnimation.getStartOffset()
124 + (long)(openTranslateAnimation.getDuration() * t)
125 - STATUS_BAR_TRANSITION_DURATION;
126 } else {
127 return SystemClock.uptimeMillis();
128 }
129 }
130
Jorim Jaggi2e3c31d2017-11-20 19:49:00 +0100131 @Override
132 public boolean canSkipFirstFrame() {
133 return mCanSkipFirstFrame;
134 }
135
Jorim Jaggif75d1612018-02-27 15:05:21 +0100136 @Override
Jorim Jaggiaa763cd2018-03-22 23:20:36 +0100137 public boolean needsEarlyWakeup() {
138 return mIsAppAnimation;
139 }
140
141 @Override
Jorim Jaggif75d1612018-02-27 15:05:21 +0100142 public void dump(PrintWriter pw, String prefix) {
143 pw.print(prefix); pw.println(mAnimation);
144 }
145
146 @Override
147 public void writeToProtoInner(ProtoOutputStream proto) {
148 final long token = proto.start(WINDOW);
149 proto.write(ANIMATION, mAnimation.toString());
150 proto.end(token);
151 }
152
Jorim Jaggif5f9e122017-10-24 18:21:09 +0200153 /**
154 * Tries to find a {@link TranslateAnimation} inside the {@code animation}.
155 *
156 * @return the found animation, {@code null} otherwise
157 */
158 private static TranslateAnimation findTranslateAnimation(Animation animation) {
159 if (animation instanceof TranslateAnimation) {
160 return (TranslateAnimation) animation;
161 } else if (animation instanceof AnimationSet) {
162 AnimationSet set = (AnimationSet) animation;
163 for (int i = 0; i < set.getAnimations().size(); i++) {
164 Animation a = set.getAnimations().get(i);
165 if (a instanceof TranslateAnimation) {
166 return (TranslateAnimation) a;
167 }
168 }
169 }
170 return null;
171 }
172
173 /**
174 * Binary searches for a {@code t} such that there exists a {@code -0.01 < eps < 0.01} for which
175 * {@code interpolator(t + eps) > 0.99}.
176 */
177 private static float findAlmostThereFraction(Interpolator interpolator) {
178 float val = 0.5f;
179 float adj = 0.25f;
180 while (adj >= 0.01f) {
181 if (interpolator.getInterpolation(val) < 0.99f) {
182 val += adj;
183 } else {
184 val -= adj;
185 }
186 adj /= 2;
187 }
188 return val;
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200189 }
190
Jorim Jaggia5e10572017-11-15 14:36:26 +0100191 private static class TmpValues {
Jorim Jaggi21c39a72017-10-20 15:47:51 +0200192 final Transformation transformation = new Transformation();
193 final float[] floats = new float[9];
194 }
195}