mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 21:43:03 +02:00
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
//
|
|
// Profile.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 10/8/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__Profile__
|
|
#define __hifi__Profile__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QUrl>
|
|
#include <QtCore/QUuid>
|
|
|
|
#include <glm/glm.hpp>
|
|
#include <glm/gtc/quaternion.hpp>
|
|
|
|
class Profile {
|
|
public:
|
|
Profile(const QString& username);
|
|
|
|
QString getUserString() const;
|
|
|
|
const QString& getUsername() const { return _username; }
|
|
|
|
void setUUID(const QUuid& uuid);
|
|
const QUuid& getUUID() { return _uuid; }
|
|
|
|
void setFaceModelURL(const QUrl& faceModelURL);
|
|
const QUrl& getFaceModelURL() const { return _faceModelURL; }
|
|
|
|
void setSkeletonModelURL(const QUrl& skeletonModelURL);
|
|
const QUrl& getSkeletonModelURL() const { return _skeletonModelURL; }
|
|
|
|
void updateDomain(const QString& domain);
|
|
void updatePosition(const glm::vec3 position);
|
|
void updateOrientation(const glm::quat& orientation);
|
|
|
|
QString getLastDomain() const { return _lastDomain; }
|
|
const glm::vec3& getLastPosition() const { return _lastPosition; }
|
|
|
|
void saveData(QSettings* settings);
|
|
void loadData(QSettings* settings);
|
|
private:
|
|
QString _username;
|
|
QUuid _uuid;
|
|
QString _lastDomain;
|
|
glm::vec3 _lastPosition;
|
|
glm::vec3 _lastOrientation;
|
|
uint64_t _lastOrientationSend;
|
|
QUrl _faceModelURL;
|
|
QUrl _skeletonModelURL;
|
|
};
|
|
|
|
#endif /* defined(__hifi__Profile__) */
|