mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
41 lines
No EOL
1,004 B
C++
41 lines
No EOL
1,004 B
C++
//
|
|
// ScriptCache.h
|
|
// libraries/script-engine/src
|
|
//
|
|
// Created by Brad Hefta-Gaub on 2015-03-30
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// 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_ScriptCache_h
|
|
#define hifi_ScriptCache_h
|
|
|
|
#include <ResourceCache.h>
|
|
|
|
class ScriptUser {
|
|
public:
|
|
virtual void scriptContentsAvailable(const QUrl& url, const QString& scriptContents) = 0;
|
|
virtual void errorInLoadingScript(const QUrl& url) = 0;
|
|
};
|
|
|
|
/// Interface for loading scripts
|
|
class ScriptCache : public QObject, public Dependency {
|
|
Q_OBJECT
|
|
SINGLETON_DEPENDENCY
|
|
|
|
public:
|
|
QString getScript(const QUrl& url, ScriptUser* scriptUser, bool& isPending);
|
|
|
|
private slots:
|
|
void scriptDownloaded();
|
|
|
|
private:
|
|
ScriptCache(QObject* parent = NULL);
|
|
|
|
QHash<QUrl, QString> _scriptCache;
|
|
QMultiMap<QUrl, ScriptUser*> _scriptUsers;
|
|
};
|
|
|
|
#endif // hifi_ScriptCache_h
|