All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfoenix.transitions.CachedTransition Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.jfoenix.transitions;

import javafx.animation.Timeline;
import javafx.animation.Transition;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.scene.Node;
import javafx.util.Duration;

/**
 * applies animation on a cached node to improve the performance
 *
 * @author Shadi Shaheen
 * @version 1.0
 * @since 2016-03-09
 */
public class CachedTransition extends Transition {
    protected final Node node;
    protected ObjectProperty timeline = new SimpleObjectProperty<>();
    private CacheMomento[] momentos = new CacheMomento[0];
    private CacheMomento nodeCacheMomento;

    public CachedTransition(final Node node, final Timeline timeline) {
        this.node = node;
        nodeCacheMomento = new CacheMomento(node);
        this.timeline.set(timeline);
        statusProperty().addListener(observable -> {
            switch (getStatus()) {
                case RUNNING:
                    starting();
                    break;
                default:
                    stopping();
                    break;
            }
        });
    }

    public CachedTransition(final Node node, final Timeline timeline, CacheMomento... cacheMomentos) {
        this.node = node;
        nodeCacheMomento = new CacheMomento(node);
        this.timeline.set(timeline);
        this.momentos = cacheMomentos;
        statusProperty().addListener(observable -> {
            switch (getStatus()) {
                case RUNNING:
                    starting();
                    break;
                default:
                    stopping();
                    break;
            }
        });
    }

    /**
     * Called when the animation is starting
     */
    protected void starting() {
        nodeCacheMomento.cache();
        if (momentos != null) {
            for (int i = 0; i < momentos.length; i++) {
                momentos[i].cache();
            }
        }
    }

    /**
     * Called when the animation is stopping
     */
    protected void stopping() {
        nodeCacheMomento.restore();
        if (momentos != null) {
            for (int i = 0; i < momentos.length; i++) {
                momentos[i].restore();
            }
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected void interpolate(double d) {
        timeline.get().playFrom(Duration.seconds(d));
        timeline.get().stop();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy