blob: d5f56ed283bf2c4e46fb88408f38d7402de72cd0 [file] [log] [blame]
John Reck68bfe0a2014-06-24 15:34:58 -07001/*
2 * Copyright (C) 2014 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#ifndef ANIMATORMANAGER_H
17#define ANIMATORMANAGER_H
18
19#include <vector>
20
21#include <cutils/compiler.h>
22#include <utils/StrongPointer.h>
23
24#include "TreeInfo.h"
25#include "utils/Macros.h"
26
27namespace android {
28namespace uirenderer {
29
John Reck119907c2014-08-14 09:02:01 -070030class AnimationHandle;
John Reck68bfe0a2014-06-24 15:34:58 -070031class BaseRenderNodeAnimator;
32class RenderNode;
33
34// Responsible for managing the animators for a single RenderNode
35class AnimatorManager {
36 PREVENT_COPY_AND_ASSIGN(AnimatorManager);
37public:
38 AnimatorManager(RenderNode& parent);
39 ~AnimatorManager();
40
41 void addAnimator(const sp<BaseRenderNodeAnimator>& animator);
42
John Reck119907c2014-08-14 09:02:01 -070043 void setAnimationHandle(AnimationHandle* handle);
44 bool hasAnimationHandle() { return mAnimationHandle; }
45
46 void pushStaging();
47
John Recka7c2ea22014-08-08 13:21:00 -070048 // Returns the combined dirty mask of all animators run
49 uint32_t animate(TreeInfo& info);
John Reck68bfe0a2014-06-24 15:34:58 -070050
John Reck119907c2014-08-14 09:02:01 -070051 void animateNoDamage(TreeInfo& info);
52
53 // Hard-ends all animators. Used for cleanup if the root is being destroyed.
54 ANDROID_API void endAllAnimators();
55
56 bool hasAnimators() { return mAnimators.size(); }
57
John Reck68bfe0a2014-06-24 15:34:58 -070058private:
John Reck119907c2014-08-14 09:02:01 -070059 uint32_t animateCommon(TreeInfo& info);
60
John Reck68bfe0a2014-06-24 15:34:58 -070061 RenderNode& mParent;
John Reck119907c2014-08-14 09:02:01 -070062 AnimationHandle* mAnimationHandle;
John Reck68bfe0a2014-06-24 15:34:58 -070063
64 // To improve the efficiency of resizing & removing from the vector
65 // use manual ref counting instead of sp<>.
66 std::vector<BaseRenderNodeAnimator*> mNewAnimators;
67 std::vector<BaseRenderNodeAnimator*> mAnimators;
68};
69
70} /* namespace uirenderer */
71} /* namespace android */
72
73#endif /* ANIMATORMANAGER_H */