mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 19:52:36 +02:00
117 lines
2.7 KiB
C++
117 lines
2.7 KiB
C++
//
|
|
// AnimationCache.h
|
|
// libraries/animation/src/
|
|
//
|
|
// Created by Andrzej Kapolka on 4/14/14.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_AnimationCache_h
|
|
#define hifi_AnimationCache_h
|
|
|
|
#include <QtCore/QRunnable>
|
|
#include <QtScript/QScriptEngine>
|
|
#include <QtScript/QScriptValue>
|
|
|
|
#include <DependencyManager.h>
|
|
#include <FBXReader.h>
|
|
#include <ResourceCache.h>
|
|
|
|
class Animation;
|
|
|
|
using AnimationPointer = QSharedPointer<Animation>;
|
|
|
|
class AnimationCache : public ResourceCache, public Dependency {
|
|
Q_OBJECT
|
|
SINGLETON_DEPENDENCY
|
|
|
|
public:
|
|
|
|
Q_INVOKABLE AnimationPointer getAnimation(const QString& url) { return getAnimation(QUrl(url)); }
|
|
Q_INVOKABLE AnimationPointer getAnimation(const QUrl& url);
|
|
|
|
protected:
|
|
|
|
virtual QSharedPointer<Resource> createResource(const QUrl& url, const QSharedPointer<Resource>& fallback,
|
|
const void* extra) override;
|
|
private:
|
|
explicit AnimationCache(QObject* parent = NULL);
|
|
virtual ~AnimationCache() { }
|
|
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(AnimationPointer)
|
|
|
|
/**jsdoc
|
|
* @class AnimationObject
|
|
*
|
|
* @hifi-interface
|
|
* @hifi-client-entity
|
|
* @hifi-server-entity
|
|
* @hifi-assignment-client
|
|
*
|
|
* @property {string[]} jointNames
|
|
* @property {FBXAnimationFrame[]} frames
|
|
*/
|
|
/// An animation loaded from the network.
|
|
class Animation : public Resource {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit Animation(const QUrl& url);
|
|
|
|
QString getType() const override { return "Animation"; }
|
|
|
|
const HFMGeometry& getGeometry() const { return *_geometry; }
|
|
|
|
virtual bool isLoaded() const override;
|
|
|
|
/**jsdoc
|
|
* @function AnimationObject.getJointNames
|
|
* @returns {string[]}
|
|
*/
|
|
Q_INVOKABLE QStringList getJointNames() const;
|
|
|
|
/**jsdoc
|
|
* @function AnimationObject.getFrames
|
|
* @returns {FBXAnimationFrame[]}
|
|
*/
|
|
Q_INVOKABLE QVector<HFMAnimationFrame> getFrames() const;
|
|
|
|
const QVector<HFMAnimationFrame>& getFramesReference() const;
|
|
|
|
protected:
|
|
virtual void downloadFinished(const QByteArray& data) override;
|
|
|
|
protected slots:
|
|
void animationParseSuccess(HFMGeometry::Pointer geometry);
|
|
void animationParseError(int error, QString str);
|
|
|
|
private:
|
|
|
|
HFMGeometry::Pointer _geometry;
|
|
};
|
|
|
|
/// Reads geometry in a worker thread.
|
|
class AnimationReader : public QObject, public QRunnable {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AnimationReader(const QUrl& url, const QByteArray& data);
|
|
virtual void run() override;
|
|
|
|
signals:
|
|
void onSuccess(HFMGeometry::Pointer geometry);
|
|
void onError(int error, QString str);
|
|
|
|
private:
|
|
QUrl _url;
|
|
QByteArray _data;
|
|
};
|
|
|
|
|
|
#endif // hifi_AnimationCache_h
|