diff options
author | Alexey Andreyev <aa13q@ya.ru> | 2019-03-06 22:13:05 +0300 |
---|---|---|
committer | Alexey Andreyev <aa13q@ya.ru> | 2019-05-14 01:41:09 +0300 |
commit | 74fa9bc64128d88939259ccb2ba4dca51571559a (patch) | |
tree | e13c120e86883e89ace225966d788e19ba417ae8 /lib/user.cpp | |
parent | b467b0816f5f6816778f90b55a9d0b5437310fd5 (diff) | |
download | libquotient-74fa9bc64128d88939259ccb2ba4dca51571559a.tar.gz libquotient-74fa9bc64128d88939259ccb2ba4dca51571559a.zip |
Provide a colour code for the user
Contributes to #296
Diffstat (limited to 'lib/user.cpp')
-rw-r--r-- | lib/user.cpp | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/lib/user.cpp b/lib/user.cpp index eec41957..b13f98b4 100644 --- a/lib/user.cpp +++ b/lib/user.cpp @@ -33,6 +33,9 @@ #include <QtCore/QStringBuilder> #include <QtCore/QElapsedTimer> +#include <QtCore/QCryptographicHash> +#include <QtCore/QtEndian> + #include <functional> using namespace QMatrixClient; @@ -47,8 +50,21 @@ class User::Private return Avatar(move(url)); } + qreal makeHueF(QString userId) + { + QByteArray hash = QCryptographicHash::hash(userId.toUtf8(), + QCryptographicHash::Sha1); + QDataStream dataStream(qToLittleEndian(hash).left(2)); + dataStream.setByteOrder(QDataStream::LittleEndian); + quint16 hashValue; + dataStream >> hashValue; + qreal hueF = static_cast<qreal>(hashValue)/std::numeric_limits<quint16>::max(); + Q_ASSERT((0 <= hueF) && (hueF <= 1)); + return hueF; + } + Private(QString userId, Connection* connection) - : userId(move(userId)), connection(connection) + : userId(move(userId)), connection(connection), hueF(makeHueF(userId)) { } QString userId; @@ -57,6 +73,7 @@ class User::Private QString bridged; QString mostUsedName; QMultiHash<QString, const Room*> otherNames; + qreal hueF; Avatar mostUsedAvatar { makeAvatar({}) }; std::vector<Avatar> otherAvatars; auto otherAvatar(QUrl url) @@ -219,6 +236,11 @@ bool User::isGuest() const return *it == ':'; } +int User::hue() const +{ + return int(hueF()*359); +} + QString User::name(const Room* room) const { return d->nameForRoom(room); @@ -424,3 +446,7 @@ void User::processEvent(const RoomMemberEvent& event, const Room* room) updateAvatarUrl(event.avatarUrl(), d->avatarUrlForRoom(room), room); } } + +qreal User::hueF() const { + return d->hueF; +} |