mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 19:29:47 +02:00
Merge branch 'master' of github.com:highfidelity/hifi into tablet-ui-edit-js
This commit is contained in:
commit
f594689fa8
38 changed files with 738 additions and 468 deletions
|
@ -206,6 +206,17 @@ foreach(CUSTOM_MACRO ${HIFI_CUSTOM_MACROS})
|
||||||
include(${CUSTOM_MACRO})
|
include(${CUSTOM_MACRO})
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
file(GLOB_RECURSE JS_SRC scripts/*.js)
|
||||||
|
add_custom_target(js SOURCES ${JS_SRC})
|
||||||
|
|
||||||
|
if (UNIX)
|
||||||
|
install(
|
||||||
|
DIRECTORY "${CMAKE_SOURCE_DIR}/scripts"
|
||||||
|
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/interface
|
||||||
|
COMPONENT ${CLIENT_COMPONENT}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (ANDROID)
|
if (ANDROID)
|
||||||
file(GLOB ANDROID_CUSTOM_MACROS "cmake/android/*.cmake")
|
file(GLOB ANDROID_CUSTOM_MACROS "cmake/android/*.cmake")
|
||||||
foreach(CUSTOM_MACRO ${ANDROID_CUSTOM_MACROS})
|
foreach(CUSTOM_MACRO ${ANDROID_CUSTOM_MACROS})
|
||||||
|
|
|
@ -365,6 +365,28 @@ void AvatarMixer::handleRequestsDomainListDataPacket(QSharedPointer<ReceivedMess
|
||||||
message->readPrimitive(&isRequesting);
|
message->readPrimitive(&isRequesting);
|
||||||
nodeData->setRequestsDomainListData(isRequesting);
|
nodeData->setRequestsDomainListData(isRequesting);
|
||||||
qCDebug(avatars) << "node" << nodeData->getNodeID() << "requestsDomainListData" << isRequesting;
|
qCDebug(avatars) << "node" << nodeData->getNodeID() << "requestsDomainListData" << isRequesting;
|
||||||
|
|
||||||
|
// If we just opened the PAL...
|
||||||
|
if (isRequesting) {
|
||||||
|
// For each node in the NodeList...
|
||||||
|
auto nodeList = DependencyManager::get<NodeList>();
|
||||||
|
nodeList->eachMatchingNode(
|
||||||
|
// Discover the valid nodes we're ignoring...
|
||||||
|
[&](const SharedNodePointer& node)->bool {
|
||||||
|
if (node->getUUID() != senderNode->getUUID() &&
|
||||||
|
(nodeData->isRadiusIgnoring(node->getUUID()) ||
|
||||||
|
senderNode->isIgnoringNodeWithID(node->getUUID()))) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
// ...For those nodes, reset the lastBroadcastTime to 0
|
||||||
|
// so that the AvatarMixer will send Identity data to us
|
||||||
|
[&](const SharedNodePointer& node) {
|
||||||
|
nodeData->setLastBroadcastTime(node->getUUID(), 0);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
auto end = usecTimestampNow();
|
auto end = usecTimestampNow();
|
||||||
|
@ -409,7 +431,31 @@ void AvatarMixer::handleKillAvatarPacket(QSharedPointer<ReceivedMessage> message
|
||||||
|
|
||||||
void AvatarMixer::handleNodeIgnoreRequestPacket(QSharedPointer<ReceivedMessage> message, SharedNodePointer senderNode) {
|
void AvatarMixer::handleNodeIgnoreRequestPacket(QSharedPointer<ReceivedMessage> message, SharedNodePointer senderNode) {
|
||||||
auto start = usecTimestampNow();
|
auto start = usecTimestampNow();
|
||||||
senderNode->parseIgnoreRequestMessage(message);
|
auto nodeList = DependencyManager::get<NodeList>();
|
||||||
|
AvatarMixerClientData* nodeData = reinterpret_cast<AvatarMixerClientData*>(senderNode->getLinkedData());
|
||||||
|
bool addToIgnore;
|
||||||
|
message->readPrimitive(&addToIgnore);
|
||||||
|
while (message->getBytesLeftToRead()) {
|
||||||
|
// parse out the UUID being ignored from the packet
|
||||||
|
QUuid ignoredUUID = QUuid::fromRfc4122(message->readWithoutCopy(NUM_BYTES_RFC4122_UUID));
|
||||||
|
// Reset the lastBroadcastTime for the ignored avatar to 0
|
||||||
|
// so the AvatarMixer knows it'll have to send identity data about the ignored avatar
|
||||||
|
// to the ignorer if the ignorer unignores.
|
||||||
|
nodeData->setLastBroadcastTime(ignoredUUID, 0);
|
||||||
|
|
||||||
|
// Reset the lastBroadcastTime for the ignorer (FROM THE PERSPECTIVE OF THE IGNORED) to 0
|
||||||
|
// so the AvatarMixer knows it'll have to send identity data about the ignorer
|
||||||
|
// to the ignored if the ignorer unignores.
|
||||||
|
auto ignoredNode = nodeList->nodeWithUUID(ignoredUUID);
|
||||||
|
AvatarMixerClientData* ignoredNodeData = reinterpret_cast<AvatarMixerClientData*>(ignoredNode->getLinkedData());
|
||||||
|
ignoredNodeData->setLastBroadcastTime(senderNode->getUUID(), 0);
|
||||||
|
|
||||||
|
if (addToIgnore) {
|
||||||
|
senderNode->addIgnoredNode(ignoredUUID);
|
||||||
|
} else {
|
||||||
|
senderNode->removeIgnoredNode(ignoredUUID);
|
||||||
|
}
|
||||||
|
}
|
||||||
auto end = usecTimestampNow();
|
auto end = usecTimestampNow();
|
||||||
_handleNodeIgnoreRequestPacketElapsedTime += (end - start);
|
_handleNodeIgnoreRequestPacketElapsedTime += (end - start);
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,15 +65,6 @@ int AvatarMixerClientData::parseData(ReceivedMessage& message) {
|
||||||
// compute the offset to the data payload
|
// compute the offset to the data payload
|
||||||
return _avatar->parseDataFromBuffer(message.readWithoutCopy(message.getBytesLeftToRead()));
|
return _avatar->parseDataFromBuffer(message.readWithoutCopy(message.getBytesLeftToRead()));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AvatarMixerClientData::checkAndSetHasReceivedFirstPacketsFrom(const QUuid& uuid) {
|
|
||||||
if (_hasReceivedFirstPacketsFrom.find(uuid) == _hasReceivedFirstPacketsFrom.end()) {
|
|
||||||
_hasReceivedFirstPacketsFrom.insert(uuid);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint64_t AvatarMixerClientData::getLastBroadcastTime(const QUuid& nodeUUID) const {
|
uint64_t AvatarMixerClientData::getLastBroadcastTime(const QUuid& nodeUUID) const {
|
||||||
// return the matching PacketSequenceNumber, or the default if we don't have it
|
// return the matching PacketSequenceNumber, or the default if we don't have it
|
||||||
auto nodeMatch = _lastBroadcastTimes.find(nodeUUID);
|
auto nodeMatch = _lastBroadcastTimes.find(nodeUUID);
|
||||||
|
@ -102,8 +93,8 @@ void AvatarMixerClientData::ignoreOther(SharedNodePointer self, SharedNodePointe
|
||||||
} else {
|
} else {
|
||||||
killPacket->writePrimitive(KillAvatarReason::YourAvatarEnteredTheirBubble);
|
killPacket->writePrimitive(KillAvatarReason::YourAvatarEnteredTheirBubble);
|
||||||
}
|
}
|
||||||
|
setLastBroadcastTime(other->getUUID(), 0);
|
||||||
DependencyManager::get<NodeList>()->sendUnreliablePacket(*killPacket, *self);
|
DependencyManager::get<NodeList>()->sendUnreliablePacket(*killPacket, *self);
|
||||||
_hasReceivedFirstPacketsFrom.erase(other->getUUID());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,6 @@ public:
|
||||||
const AvatarData* getConstAvatarData() const { return _avatar.get(); }
|
const AvatarData* getConstAvatarData() const { return _avatar.get(); }
|
||||||
AvatarSharedPointer getAvatarSharedPointer() const { return _avatar; }
|
AvatarSharedPointer getAvatarSharedPointer() const { return _avatar; }
|
||||||
|
|
||||||
bool checkAndSetHasReceivedFirstPacketsFrom(const QUuid& uuid);
|
|
||||||
|
|
||||||
uint16_t getLastBroadcastSequenceNumber(const QUuid& nodeUUID) const;
|
uint16_t getLastBroadcastSequenceNumber(const QUuid& nodeUUID) const;
|
||||||
void setLastBroadcastSequenceNumber(const QUuid& nodeUUID, uint16_t sequenceNumber)
|
void setLastBroadcastSequenceNumber(const QUuid& nodeUUID, uint16_t sequenceNumber)
|
||||||
{ _lastBroadcastSequenceNumbers[nodeUUID] = sequenceNumber; }
|
{ _lastBroadcastSequenceNumbers[nodeUUID] = sequenceNumber; }
|
||||||
|
@ -63,8 +61,8 @@ public:
|
||||||
|
|
||||||
uint16_t getLastReceivedSequenceNumber() const { return _lastReceivedSequenceNumber; }
|
uint16_t getLastReceivedSequenceNumber() const { return _lastReceivedSequenceNumber; }
|
||||||
|
|
||||||
HRCTime getIdentityChangeTimestamp() const { return _identityChangeTimestamp; }
|
uint64_t getIdentityChangeTimestamp() const { return _identityChangeTimestamp; }
|
||||||
void flagIdentityChange() { _identityChangeTimestamp = p_high_resolution_clock::now(); }
|
void flagIdentityChange() { _identityChangeTimestamp = usecTimestampNow(); }
|
||||||
bool getAvatarSessionDisplayNameMustChange() const { return _avatarSessionDisplayNameMustChange; }
|
bool getAvatarSessionDisplayNameMustChange() const { return _avatarSessionDisplayNameMustChange; }
|
||||||
void setAvatarSessionDisplayNameMustChange(bool set = true) { _avatarSessionDisplayNameMustChange = set; }
|
void setAvatarSessionDisplayNameMustChange(bool set = true) { _avatarSessionDisplayNameMustChange = set; }
|
||||||
|
|
||||||
|
@ -139,7 +137,6 @@ private:
|
||||||
|
|
||||||
uint16_t _lastReceivedSequenceNumber { 0 };
|
uint16_t _lastReceivedSequenceNumber { 0 };
|
||||||
std::unordered_map<QUuid, uint16_t> _lastBroadcastSequenceNumbers;
|
std::unordered_map<QUuid, uint16_t> _lastBroadcastSequenceNumbers;
|
||||||
std::unordered_set<QUuid> _hasReceivedFirstPacketsFrom;
|
|
||||||
std::unordered_map<QUuid, uint64_t> _lastBroadcastTimes;
|
std::unordered_map<QUuid, uint64_t> _lastBroadcastTimes;
|
||||||
|
|
||||||
// this is a map of the last time we encoded an "other" avatar for
|
// this is a map of the last time we encoded an "other" avatar for
|
||||||
|
@ -147,7 +144,7 @@ private:
|
||||||
std::unordered_map<QUuid, quint64> _lastOtherAvatarEncodeTime;
|
std::unordered_map<QUuid, quint64> _lastOtherAvatarEncodeTime;
|
||||||
std::unordered_map<QUuid, QVector<JointData>> _lastOtherAvatarSentJoints;
|
std::unordered_map<QUuid, QVector<JointData>> _lastOtherAvatarSentJoints;
|
||||||
|
|
||||||
HRCTime _identityChangeTimestamp;
|
uint64_t _identityChangeTimestamp;
|
||||||
bool _avatarSessionDisplayNameMustChange{ false };
|
bool _avatarSessionDisplayNameMustChange{ false };
|
||||||
|
|
||||||
int _numAvatarsSentLastFrame = 0;
|
int _numAvatarsSentLastFrame = 0;
|
||||||
|
|
|
@ -80,16 +80,6 @@ int AvatarMixerSlave::sendIdentityPacket(const AvatarMixerClientData* nodeData,
|
||||||
|
|
||||||
static const int AVATAR_MIXER_BROADCAST_FRAMES_PER_SECOND = 45;
|
static const int AVATAR_MIXER_BROADCAST_FRAMES_PER_SECOND = 45;
|
||||||
|
|
||||||
// FIXME - There is some old logic (unchanged as of 2/17/17) that randomly decides to send an identity
|
|
||||||
// packet. That logic had the following comment about the constants it uses...
|
|
||||||
//
|
|
||||||
// An 80% chance of sending a identity packet within a 5 second interval.
|
|
||||||
// assuming 60 htz update rate.
|
|
||||||
//
|
|
||||||
// Assuming the calculation of the constant is in fact correct for 80% and 60hz and 5 seconds (an assumption
|
|
||||||
// that I have not verified) then the constant is definitely wrong now, since we send at 45hz.
|
|
||||||
const float IDENTITY_SEND_PROBABILITY = 1.0f / 187.0f;
|
|
||||||
|
|
||||||
void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
||||||
quint64 start = usecTimestampNow();
|
quint64 start = usecTimestampNow();
|
||||||
|
|
||||||
|
@ -137,14 +127,18 @@ void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
||||||
// keep track of the number of other avatar frames skipped
|
// keep track of the number of other avatar frames skipped
|
||||||
int numAvatarsWithSkippedFrames = 0;
|
int numAvatarsWithSkippedFrames = 0;
|
||||||
|
|
||||||
// When this is true, the AvatarMixer will send Avatar data to a client about avatars that are not in the view frustrum
|
// When this is true, the AvatarMixer will send Avatar data to a client
|
||||||
bool getsOutOfView = nodeData->getRequestsDomainListData();
|
// about avatars they've ignored or that are out of view
|
||||||
|
bool PALIsOpen = nodeData->getRequestsDomainListData();
|
||||||
// When this is true, the AvatarMixer will send Avatar data to a client about avatars that they've ignored
|
|
||||||
bool getsIgnoredByMe = getsOutOfView;
|
|
||||||
|
|
||||||
// When this is true, the AvatarMixer will send Avatar data to a client about avatars that have ignored them
|
// When this is true, the AvatarMixer will send Avatar data to a client about avatars that have ignored them
|
||||||
bool getsAnyIgnored = getsIgnoredByMe && node->getCanKick();
|
bool getsAnyIgnored = PALIsOpen && node->getCanKick();
|
||||||
|
|
||||||
|
if (PALIsOpen) {
|
||||||
|
// Increase minimumBytesPerAvatar if the PAL is open
|
||||||
|
minimumBytesPerAvatar += sizeof(AvatarDataPacket::AvatarGlobalPosition) +
|
||||||
|
sizeof(AvatarDataPacket::AudioLoudness);
|
||||||
|
}
|
||||||
|
|
||||||
// setup a PacketList for the avatarPackets
|
// setup a PacketList for the avatarPackets
|
||||||
auto avatarPacketList = NLPacketList::create(PacketType::BulkAvatarData);
|
auto avatarPacketList = NLPacketList::create(PacketType::BulkAvatarData);
|
||||||
|
@ -222,13 +216,14 @@ void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
||||||
// or that has ignored the viewing node
|
// or that has ignored the viewing node
|
||||||
if (!avatarNode->getLinkedData()
|
if (!avatarNode->getLinkedData()
|
||||||
|| avatarNode->getUUID() == node->getUUID()
|
|| avatarNode->getUUID() == node->getUUID()
|
||||||
|| (node->isIgnoringNodeWithID(avatarNode->getUUID()) && !getsIgnoredByMe)
|
|| (node->isIgnoringNodeWithID(avatarNode->getUUID()) && !PALIsOpen)
|
||||||
|| (avatarNode->isIgnoringNodeWithID(node->getUUID()) && !getsAnyIgnored)) {
|
|| (avatarNode->isIgnoringNodeWithID(node->getUUID()) && !getsAnyIgnored)) {
|
||||||
shouldIgnore = true;
|
shouldIgnore = true;
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// Check to see if the space bubble is enabled
|
// Check to see if the space bubble is enabled
|
||||||
if (node->isIgnoreRadiusEnabled() || avatarNode->isIgnoreRadiusEnabled()) {
|
// Don't bother with these checks if the other avatar has their bubble enabled and we're gettingAnyIgnored
|
||||||
|
if (node->isIgnoreRadiusEnabled() || (avatarNode->isIgnoreRadiusEnabled() && !getsAnyIgnored)) {
|
||||||
|
|
||||||
// Define the scale of the box for the current other node
|
// Define the scale of the box for the current other node
|
||||||
glm::vec3 otherNodeBoxScale = (avatarNodeData->getPosition() - avatarNodeData->getGlobalBoundingBoxCorner()) * 2.0f;
|
glm::vec3 otherNodeBoxScale = (avatarNodeData->getPosition() - avatarNodeData->getGlobalBoundingBoxCorner()) * 2.0f;
|
||||||
|
@ -306,16 +301,9 @@ void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
||||||
|
|
||||||
const AvatarMixerClientData* otherNodeData = reinterpret_cast<const AvatarMixerClientData*>(otherNode->getLinkedData());
|
const AvatarMixerClientData* otherNodeData = reinterpret_cast<const AvatarMixerClientData*>(otherNode->getLinkedData());
|
||||||
|
|
||||||
// make sure we send out identity packets to and from new arrivals.
|
// If the time that the mixer sent AVATAR DATA about Avatar B to Avatar A is BEFORE OR EQUAL TO
|
||||||
bool forceSend = !nodeData->checkAndSetHasReceivedFirstPacketsFrom(otherNode->getUUID());
|
// the time that Avatar B flagged an IDENTITY DATA change, send IDENTITY DATA about Avatar B to Avatar A.
|
||||||
|
if (nodeData->getLastBroadcastTime(otherNode->getUUID()) <= otherNodeData->getIdentityChangeTimestamp()) {
|
||||||
// FIXME - this clause seems suspicious "... || otherNodeData->getIdentityChangeTimestamp() > _lastFrameTimestamp ..."
|
|
||||||
if (!overBudget
|
|
||||||
&& otherNodeData->getIdentityChangeTimestamp().time_since_epoch().count() > 0
|
|
||||||
&& (forceSend
|
|
||||||
|| otherNodeData->getIdentityChangeTimestamp() > _lastFrameTimestamp
|
|
||||||
|| distribution(generator) < IDENTITY_SEND_PROBABILITY)) {
|
|
||||||
|
|
||||||
identityBytesSent += sendIdentityPacket(otherNodeData, node);
|
identityBytesSent += sendIdentityPacket(otherNodeData, node);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -335,9 +323,9 @@ void AvatarMixerSlave::broadcastAvatarData(const SharedNodePointer& node) {
|
||||||
if (overBudget) {
|
if (overBudget) {
|
||||||
overBudgetAvatars++;
|
overBudgetAvatars++;
|
||||||
_stats.overBudgetAvatars++;
|
_stats.overBudgetAvatars++;
|
||||||
detail = AvatarData::NoData;
|
detail = PALIsOpen ? AvatarData::PALMinimum : AvatarData::NoData;
|
||||||
} else if (!isInView && !getsOutOfView) {
|
} else if (!isInView) {
|
||||||
detail = AvatarData::NoData;
|
detail = PALIsOpen ? AvatarData::PALMinimum : AvatarData::NoData;
|
||||||
nodeData->incrementAvatarOutOfView();
|
nodeData->incrementAvatarOutOfView();
|
||||||
} else {
|
} else {
|
||||||
detail = distribution(generator) < AVATAR_SEND_FULL_UPDATE_RATIO
|
detail = distribution(generator) < AVATAR_SEND_FULL_UPDATE_RATIO
|
||||||
|
|
|
@ -63,6 +63,17 @@ qt5_wrap_ui(QT_UI_HEADERS "${QT_UI_FILES}")
|
||||||
# add them to the interface source files
|
# add them to the interface source files
|
||||||
set(INTERFACE_SRCS ${INTERFACE_SRCS} "${QT_UI_HEADERS}" "${QT_RESOURCES}")
|
set(INTERFACE_SRCS ${INTERFACE_SRCS} "${QT_UI_HEADERS}" "${QT_RESOURCES}")
|
||||||
|
|
||||||
|
file(GLOB_RECURSE QML_SRC resources/qml/*.qml resources/qml/*.js)
|
||||||
|
add_custom_target(qml SOURCES ${QML_SRC})
|
||||||
|
|
||||||
|
if (UNIX)
|
||||||
|
install(
|
||||||
|
DIRECTORY "${CMAKE_SOURCE_DIR}/interface/resources/qml"
|
||||||
|
DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/resources
|
||||||
|
COMPONENT ${CLIENT_COMPONENT}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
# translation disabled until we strip out the line numbers
|
# translation disabled until we strip out the line numbers
|
||||||
# set(QM ${TARGET_NAME}_en.qm)
|
# set(QM ${TARGET_NAME}_en.qm)
|
||||||
# set(TS ${TARGET_NAME}_en.ts)
|
# set(TS ${TARGET_NAME}_en.ts)
|
||||||
|
|
|
@ -4244,12 +4244,6 @@ void Application::updateDialogs(float deltaTime) const {
|
||||||
PerformanceWarning warn(showWarnings, "Application::updateDialogs()");
|
PerformanceWarning warn(showWarnings, "Application::updateDialogs()");
|
||||||
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
||||||
|
|
||||||
// Update bandwidth dialog, if any
|
|
||||||
BandwidthDialog* bandwidthDialog = dialogsManager->getBandwidthDialog();
|
|
||||||
if (bandwidthDialog) {
|
|
||||||
bandwidthDialog->update();
|
|
||||||
}
|
|
||||||
|
|
||||||
QPointer<OctreeStatsDialog> octreeStatsDialog = dialogsManager->getOctreeStatsDialog();
|
QPointer<OctreeStatsDialog> octreeStatsDialog = dialogsManager->getOctreeStatsDialog();
|
||||||
if (octreeStatsDialog) {
|
if (octreeStatsDialog) {
|
||||||
octreeStatsDialog->update();
|
octreeStatsDialog->update();
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
#include <RunningMarker.h>
|
#include <RunningMarker.h>
|
||||||
|
|
||||||
#include "avatar/MyAvatar.h"
|
#include "avatar/MyAvatar.h"
|
||||||
|
#include "BandwidthRecorder.h"
|
||||||
#include "Bookmarks.h"
|
#include "Bookmarks.h"
|
||||||
#include "Camera.h"
|
#include "Camera.h"
|
||||||
#include "ConnectionMonitor.h"
|
#include "ConnectionMonitor.h"
|
||||||
|
@ -61,7 +62,6 @@
|
||||||
#include "scripting/ControllerScriptingInterface.h"
|
#include "scripting/ControllerScriptingInterface.h"
|
||||||
#include "scripting/DialogsManagerScriptingInterface.h"
|
#include "scripting/DialogsManagerScriptingInterface.h"
|
||||||
#include "ui/ApplicationOverlay.h"
|
#include "ui/ApplicationOverlay.h"
|
||||||
#include "ui/BandwidthDialog.h"
|
|
||||||
#include "ui/EntityScriptServerLogDialog.h"
|
#include "ui/EntityScriptServerLogDialog.h"
|
||||||
#include "ui/LodToolsDialog.h"
|
#include "ui/LodToolsDialog.h"
|
||||||
#include "ui/LogDialog.h"
|
#include "ui/LogDialog.h"
|
||||||
|
|
|
@ -566,8 +566,6 @@ Menu::Menu() {
|
||||||
dialogsManager.data(), SLOT(toggleDiskCacheEditor()));
|
dialogsManager.data(), SLOT(toggleDiskCacheEditor()));
|
||||||
addActionToQMenuAndActionHash(networkMenu, MenuOption::ShowDSConnectTable, 0,
|
addActionToQMenuAndActionHash(networkMenu, MenuOption::ShowDSConnectTable, 0,
|
||||||
dialogsManager.data(), SLOT(showDomainConnectionDialog()));
|
dialogsManager.data(), SLOT(showDomainConnectionDialog()));
|
||||||
addActionToQMenuAndActionHash(networkMenu, MenuOption::BandwidthDetails, 0,
|
|
||||||
dialogsManager.data(), SLOT(bandwidthDetails()));
|
|
||||||
|
|
||||||
#if (PR_BUILD || DEV_BUILD)
|
#if (PR_BUILD || DEV_BUILD)
|
||||||
addCheckableActionToQMenuAndActionHash(networkMenu, MenuOption::SendWrongProtocolVersion, 0, false,
|
addCheckableActionToQMenuAndActionHash(networkMenu, MenuOption::SendWrongProtocolVersion, 0, false,
|
||||||
|
|
|
@ -49,7 +49,6 @@ namespace MenuOption {
|
||||||
const QString AutoMuteAudio = "Auto Mute Microphone";
|
const QString AutoMuteAudio = "Auto Mute Microphone";
|
||||||
const QString AvatarReceiveStats = "Show Receive Stats";
|
const QString AvatarReceiveStats = "Show Receive Stats";
|
||||||
const QString Back = "Back";
|
const QString Back = "Back";
|
||||||
const QString BandwidthDetails = "Bandwidth Details";
|
|
||||||
const QString BinaryEyelidControl = "Binary Eyelid Control";
|
const QString BinaryEyelidControl = "Binary Eyelid Control";
|
||||||
const QString BookmarkLocation = "Bookmark Location";
|
const QString BookmarkLocation = "Bookmark Location";
|
||||||
const QString Bookmarks = "Bookmarks";
|
const QString Bookmarks = "Bookmarks";
|
||||||
|
|
|
@ -329,7 +329,7 @@ void AvatarManager::removeAvatar(const QUuid& sessionUUID, KillAvatarReason remo
|
||||||
}
|
}
|
||||||
|
|
||||||
void AvatarManager::handleRemovedAvatar(const AvatarSharedPointer& removedAvatar, KillAvatarReason removalReason) {
|
void AvatarManager::handleRemovedAvatar(const AvatarSharedPointer& removedAvatar, KillAvatarReason removalReason) {
|
||||||
AvatarHashMap::handleRemovedAvatar(removedAvatar);
|
AvatarHashMap::handleRemovedAvatar(removedAvatar, removalReason);
|
||||||
|
|
||||||
// removedAvatar is a shared pointer to an AvatarData but we need to get to the derived Avatar
|
// removedAvatar is a shared pointer to an AvatarData but we need to get to the derived Avatar
|
||||||
// class in this context so we can call methods that don't exist at the base class.
|
// class in this context so we can call methods that don't exist at the base class.
|
||||||
|
|
|
@ -1,135 +0,0 @@
|
||||||
//
|
|
||||||
// BandwidthDialog.cpp
|
|
||||||
// interface/src/ui
|
|
||||||
//
|
|
||||||
// Created by Tobias Schwinger on 6/21/13.
|
|
||||||
// Copyright 2013 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
|
|
||||||
//
|
|
||||||
|
|
||||||
#include <cstdio>
|
|
||||||
|
|
||||||
#include "BandwidthRecorder.h"
|
|
||||||
#include "ui/BandwidthDialog.h"
|
|
||||||
|
|
||||||
#include <QFormLayout>
|
|
||||||
#include <QDialogButtonBox>
|
|
||||||
|
|
||||||
#include <QPalette>
|
|
||||||
#include <QColor>
|
|
||||||
|
|
||||||
|
|
||||||
BandwidthChannelDisplay::BandwidthChannelDisplay(QVector<NodeType_t> nodeTypesToFollow,
|
|
||||||
QFormLayout* form,
|
|
||||||
char const* const caption, char const* unitCaption,
|
|
||||||
const float unitScale, unsigned colorRGBA) :
|
|
||||||
_nodeTypesToFollow(nodeTypesToFollow),
|
|
||||||
_caption(caption),
|
|
||||||
_unitCaption(unitCaption),
|
|
||||||
_unitScale(unitScale),
|
|
||||||
_colorRGBA(colorRGBA)
|
|
||||||
{
|
|
||||||
_label = new QLabel();
|
|
||||||
_label->setAlignment(Qt::AlignRight);
|
|
||||||
|
|
||||||
QPalette palette = _label->palette();
|
|
||||||
unsigned rgb = colorRGBA >> 8;
|
|
||||||
rgb = ((rgb & 0xfefefeu) >> 1) + ((rgb & 0xf8f8f8) >> 3);
|
|
||||||
palette.setColor(QPalette::WindowText, QColor::fromRgb(rgb));
|
|
||||||
_label->setPalette(palette);
|
|
||||||
|
|
||||||
form->addRow(QString(" ") + _caption + " Bandwidth In/Out:", _label);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void BandwidthChannelDisplay::bandwidthAverageUpdated() {
|
|
||||||
float inTotal = 0.;
|
|
||||||
float outTotal = 0.;
|
|
||||||
|
|
||||||
QSharedPointer<BandwidthRecorder> bandwidthRecorder = DependencyManager::get<BandwidthRecorder>();
|
|
||||||
|
|
||||||
for (int i = 0; i < _nodeTypesToFollow.size(); ++i) {
|
|
||||||
inTotal += bandwidthRecorder->getAverageInputKilobitsPerSecond(_nodeTypesToFollow.at(i));
|
|
||||||
outTotal += bandwidthRecorder->getAverageOutputKilobitsPerSecond(_nodeTypesToFollow.at(i));
|
|
||||||
}
|
|
||||||
|
|
||||||
_strBuf =
|
|
||||||
QString("").setNum((int) (inTotal * _unitScale)) + "/" +
|
|
||||||
QString("").setNum((int) (outTotal * _unitScale)) + " " + _unitCaption;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void BandwidthChannelDisplay::paint() {
|
|
||||||
_label->setText(_strBuf);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
BandwidthDialog::BandwidthDialog(QWidget* parent) :
|
|
||||||
QDialog(parent, Qt::Window | Qt::WindowCloseButtonHint | Qt::WindowStaysOnTopHint) {
|
|
||||||
|
|
||||||
this->setWindowTitle("Bandwidth Details");
|
|
||||||
|
|
||||||
// Create layout
|
|
||||||
QFormLayout* form = new QFormLayout();
|
|
||||||
form->setSizeConstraint(QLayout::SetFixedSize);
|
|
||||||
this->QDialog::setLayout(form);
|
|
||||||
|
|
||||||
QSharedPointer<BandwidthRecorder> bandwidthRecorder = DependencyManager::get<BandwidthRecorder>();
|
|
||||||
|
|
||||||
_allChannelDisplays[0] = _audioChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({NodeType::AudioMixer}, form, "Audio", "Kbps", 1.0, COLOR0);
|
|
||||||
_allChannelDisplays[1] = _avatarsChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({NodeType::Agent, NodeType::AvatarMixer}, form, "Avatars", "Kbps", 1.0, COLOR1);
|
|
||||||
_allChannelDisplays[2] = _octreeChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({NodeType::EntityServer}, form, "Octree", "Kbps", 1.0, COLOR2);
|
|
||||||
_allChannelDisplays[3] = _octreeChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({NodeType::DomainServer}, form, "Domain", "Kbps", 1.0, COLOR2);
|
|
||||||
_allChannelDisplays[4] = _otherChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({NodeType::Unassigned}, form, "Other", "Kbps", 1.0, COLOR2);
|
|
||||||
_allChannelDisplays[5] = _totalChannelDisplay =
|
|
||||||
new BandwidthChannelDisplay({
|
|
||||||
NodeType::DomainServer, NodeType::EntityServer,
|
|
||||||
NodeType::AudioMixer, NodeType::Agent,
|
|
||||||
NodeType::AvatarMixer, NodeType::Unassigned
|
|
||||||
}, form, "Total", "Kbps", 1.0, COLOR2);
|
|
||||||
|
|
||||||
connect(averageUpdateTimer, SIGNAL(timeout()), this, SLOT(updateTimerTimeout()));
|
|
||||||
averageUpdateTimer->start(1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
BandwidthDialog::~BandwidthDialog() {
|
|
||||||
for (unsigned int i = 0; i < _CHANNELCOUNT; i++) {
|
|
||||||
delete _allChannelDisplays[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void BandwidthDialog::updateTimerTimeout() {
|
|
||||||
for (unsigned int i = 0; i < _CHANNELCOUNT; i++) {
|
|
||||||
_allChannelDisplays[i]->bandwidthAverageUpdated();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void BandwidthDialog::paintEvent(QPaintEvent* event) {
|
|
||||||
for (unsigned int i=0; i<_CHANNELCOUNT; i++)
|
|
||||||
_allChannelDisplays[i]->paint();
|
|
||||||
this->QDialog::paintEvent(event);
|
|
||||||
}
|
|
||||||
|
|
||||||
void BandwidthDialog::reject() {
|
|
||||||
|
|
||||||
// Just regularly close upon ESC
|
|
||||||
this->QDialog::close();
|
|
||||||
}
|
|
||||||
|
|
||||||
void BandwidthDialog::closeEvent(QCloseEvent* event) {
|
|
||||||
|
|
||||||
this->QDialog::closeEvent(event);
|
|
||||||
emit closed();
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,94 +0,0 @@
|
||||||
//
|
|
||||||
// BandwidthDialog.h
|
|
||||||
// interface/src/ui
|
|
||||||
//
|
|
||||||
// Created by Tobias Schwinger on 6/21/13.
|
|
||||||
// Copyright 2013 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_BandwidthDialog_h
|
|
||||||
#define hifi_BandwidthDialog_h
|
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include <QLabel>
|
|
||||||
#include <QFormLayout>
|
|
||||||
#include <QVector>
|
|
||||||
#include <QTimer>
|
|
||||||
|
|
||||||
#include "Node.h"
|
|
||||||
#include "BandwidthRecorder.h"
|
|
||||||
|
|
||||||
|
|
||||||
const unsigned int COLOR0 = 0x33cc99ff;
|
|
||||||
const unsigned int COLOR1 = 0xffef40c0;
|
|
||||||
const unsigned int COLOR2 = 0xd0d0d0a0;
|
|
||||||
|
|
||||||
|
|
||||||
class BandwidthChannelDisplay : public QObject {
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
BandwidthChannelDisplay(QVector<NodeType_t> nodeTypesToFollow,
|
|
||||||
QFormLayout* form,
|
|
||||||
char const* const caption, char const* unitCaption, float unitScale, unsigned colorRGBA);
|
|
||||||
void paint();
|
|
||||||
|
|
||||||
private:
|
|
||||||
QVector<NodeType_t> _nodeTypesToFollow;
|
|
||||||
QLabel* _label;
|
|
||||||
QString _strBuf;
|
|
||||||
char const* const _caption;
|
|
||||||
char const* _unitCaption;
|
|
||||||
float const _unitScale;
|
|
||||||
unsigned _colorRGBA;
|
|
||||||
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void bandwidthAverageUpdated();
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
class BandwidthDialog : public QDialog {
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
BandwidthDialog(QWidget* parent);
|
|
||||||
~BandwidthDialog();
|
|
||||||
|
|
||||||
void paintEvent(QPaintEvent*) override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
BandwidthChannelDisplay* _audioChannelDisplay;
|
|
||||||
BandwidthChannelDisplay* _avatarsChannelDisplay;
|
|
||||||
BandwidthChannelDisplay* _octreeChannelDisplay;
|
|
||||||
BandwidthChannelDisplay* _domainChannelDisplay;
|
|
||||||
BandwidthChannelDisplay* _otherChannelDisplay;
|
|
||||||
BandwidthChannelDisplay* _totalChannelDisplay; // sums of all the other channels
|
|
||||||
|
|
||||||
static const unsigned int _CHANNELCOUNT = 6;
|
|
||||||
BandwidthChannelDisplay* _allChannelDisplays[_CHANNELCOUNT];
|
|
||||||
|
|
||||||
|
|
||||||
signals:
|
|
||||||
|
|
||||||
void closed();
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void reject() override;
|
|
||||||
void updateTimerTimeout();
|
|
||||||
|
|
||||||
|
|
||||||
protected:
|
|
||||||
|
|
||||||
// Emits a 'closed' signal when this dialog is closed.
|
|
||||||
void closeEvent(QCloseEvent*) override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
QTimer* averageUpdateTimer = new QTimer(this);
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // hifi_BandwidthDialog_h
|
|
|
@ -19,7 +19,6 @@
|
||||||
#include <PathUtils.h>
|
#include <PathUtils.h>
|
||||||
|
|
||||||
#include "AddressBarDialog.h"
|
#include "AddressBarDialog.h"
|
||||||
#include "BandwidthDialog.h"
|
|
||||||
#include "CachesSizeDialog.h"
|
#include "CachesSizeDialog.h"
|
||||||
#include "ConnectionFailureDialog.h"
|
#include "ConnectionFailureDialog.h"
|
||||||
#include "DiskCacheEditor.h"
|
#include "DiskCacheEditor.h"
|
||||||
|
@ -108,20 +107,6 @@ void DialogsManager::cachesSizeDialog() {
|
||||||
_cachesSizeDialog->raise();
|
_cachesSizeDialog->raise();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DialogsManager::bandwidthDetails() {
|
|
||||||
if (! _bandwidthDialog) {
|
|
||||||
_bandwidthDialog = new BandwidthDialog(qApp->getWindow());
|
|
||||||
connect(_bandwidthDialog, SIGNAL(closed()), _bandwidthDialog, SLOT(deleteLater()));
|
|
||||||
|
|
||||||
if (_hmdToolsDialog) {
|
|
||||||
_hmdToolsDialog->watchWindow(_bandwidthDialog->windowHandle());
|
|
||||||
}
|
|
||||||
|
|
||||||
_bandwidthDialog->show();
|
|
||||||
}
|
|
||||||
_bandwidthDialog->raise();
|
|
||||||
}
|
|
||||||
|
|
||||||
void DialogsManager::lodTools() {
|
void DialogsManager::lodTools() {
|
||||||
if (!_lodToolsDialog) {
|
if (!_lodToolsDialog) {
|
||||||
maybeCreateDialog(_lodToolsDialog);
|
maybeCreateDialog(_lodToolsDialog);
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
|
|
||||||
class AnimationsDialog;
|
class AnimationsDialog;
|
||||||
class AttachmentsDialog;
|
class AttachmentsDialog;
|
||||||
class BandwidthDialog;
|
|
||||||
class CachesSizeDialog;
|
class CachesSizeDialog;
|
||||||
class DiskCacheEditor;
|
class DiskCacheEditor;
|
||||||
class LodToolsDialog;
|
class LodToolsDialog;
|
||||||
|
@ -36,7 +35,6 @@ class DialogsManager : public QObject, public Dependency {
|
||||||
SINGLETON_DEPENDENCY
|
SINGLETON_DEPENDENCY
|
||||||
|
|
||||||
public:
|
public:
|
||||||
QPointer<BandwidthDialog> getBandwidthDialog() const { return _bandwidthDialog; }
|
|
||||||
QPointer<HMDToolsDialog> getHMDToolsDialog() const { return _hmdToolsDialog; }
|
QPointer<HMDToolsDialog> getHMDToolsDialog() const { return _hmdToolsDialog; }
|
||||||
QPointer<LodToolsDialog> getLodToolsDialog() const { return _lodToolsDialog; }
|
QPointer<LodToolsDialog> getLodToolsDialog() const { return _lodToolsDialog; }
|
||||||
QPointer<OctreeStatsDialog> getOctreeStatsDialog() const { return _octreeStatsDialog; }
|
QPointer<OctreeStatsDialog> getOctreeStatsDialog() const { return _octreeStatsDialog; }
|
||||||
|
@ -53,7 +51,6 @@ public slots:
|
||||||
void showLoginDialog();
|
void showLoginDialog();
|
||||||
void octreeStatsDetails();
|
void octreeStatsDetails();
|
||||||
void cachesSizeDialog();
|
void cachesSizeDialog();
|
||||||
void bandwidthDetails();
|
|
||||||
void lodTools();
|
void lodTools();
|
||||||
void hmdTools(bool showTools);
|
void hmdTools(bool showTools);
|
||||||
void showScriptEditor();
|
void showScriptEditor();
|
||||||
|
@ -79,7 +76,6 @@ private:
|
||||||
|
|
||||||
QPointer<AnimationsDialog> _animationsDialog;
|
QPointer<AnimationsDialog> _animationsDialog;
|
||||||
QPointer<AttachmentsDialog> _attachmentsDialog;
|
QPointer<AttachmentsDialog> _attachmentsDialog;
|
||||||
QPointer<BandwidthDialog> _bandwidthDialog;
|
|
||||||
QPointer<CachesSizeDialog> _cachesSizeDialog;
|
QPointer<CachesSizeDialog> _cachesSizeDialog;
|
||||||
QPointer<DiskCacheEditor> _diskCacheEditor;
|
QPointer<DiskCacheEditor> _diskCacheEditor;
|
||||||
QPointer<QMessageBox> _ircInfoBox;
|
QPointer<QMessageBox> _ircInfoBox;
|
||||||
|
|
|
@ -79,9 +79,6 @@ HMDToolsDialog::HMDToolsDialog(QWidget* parent) :
|
||||||
// what screens we're allowed on
|
// what screens we're allowed on
|
||||||
watchWindow(windowHandle());
|
watchWindow(windowHandle());
|
||||||
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
||||||
if (dialogsManager->getBandwidthDialog()) {
|
|
||||||
watchWindow(dialogsManager->getBandwidthDialog()->windowHandle());
|
|
||||||
}
|
|
||||||
if (dialogsManager->getOctreeStatsDialog()) {
|
if (dialogsManager->getOctreeStatsDialog()) {
|
||||||
watchWindow(dialogsManager->getOctreeStatsDialog()->windowHandle());
|
watchWindow(dialogsManager->getOctreeStatsDialog()->windowHandle());
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,11 @@ namespace render {
|
||||||
if (overlay->is3D()) {
|
if (overlay->is3D()) {
|
||||||
auto overlay3D = std::dynamic_pointer_cast<Base3DOverlay>(overlay);
|
auto overlay3D = std::dynamic_pointer_cast<Base3DOverlay>(overlay);
|
||||||
if (overlay3D->isAA())
|
if (overlay3D->isAA())
|
||||||
return (overlay3D->getDrawInFront() ? LAYER_3D_FRONT : LAYER_3D);
|
if (overlay3D->getDrawInFront()) {
|
||||||
|
return LAYER_3D_FRONT;
|
||||||
|
} else {
|
||||||
|
return LAYER_3D;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
return LAYER_NO_AA;
|
return LAYER_NO_AA;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -488,13 +488,7 @@ const AnimPoseVec& AnimInverseKinematics::overlay(const AnimVariantMap& animVars
|
||||||
// measure new _hipsOffset for next frame
|
// measure new _hipsOffset for next frame
|
||||||
// by looking for discrepancies between where a targeted endEffector is
|
// by looking for discrepancies between where a targeted endEffector is
|
||||||
// and where it wants to be (after IK solutions are done)
|
// and where it wants to be (after IK solutions are done)
|
||||||
|
glm::vec3 newHipsOffset = Vectors::ZERO;
|
||||||
// use weighted average between HMD and other targets
|
|
||||||
float HMD_WEIGHT = 10.0f;
|
|
||||||
float OTHER_WEIGHT = 1.0f;
|
|
||||||
float totalWeight = 0.0f;
|
|
||||||
|
|
||||||
glm::vec3 additionalHipsOffset = Vectors::ZERO;
|
|
||||||
for (auto& target: targets) {
|
for (auto& target: targets) {
|
||||||
int targetIndex = target.getIndex();
|
int targetIndex = target.getIndex();
|
||||||
if (targetIndex == _headIndex && _headIndex != -1) {
|
if (targetIndex == _headIndex && _headIndex != -1) {
|
||||||
|
@ -505,42 +499,34 @@ const AnimPoseVec& AnimInverseKinematics::overlay(const AnimVariantMap& animVars
|
||||||
glm::vec3 under = _skeleton->getAbsolutePose(_headIndex, underPoses).trans();
|
glm::vec3 under = _skeleton->getAbsolutePose(_headIndex, underPoses).trans();
|
||||||
glm::vec3 actual = _skeleton->getAbsolutePose(_headIndex, _relativePoses).trans();
|
glm::vec3 actual = _skeleton->getAbsolutePose(_headIndex, _relativePoses).trans();
|
||||||
const float HEAD_OFFSET_SLAVE_FACTOR = 0.65f;
|
const float HEAD_OFFSET_SLAVE_FACTOR = 0.65f;
|
||||||
additionalHipsOffset += (OTHER_WEIGHT * HEAD_OFFSET_SLAVE_FACTOR) * (under- actual);
|
newHipsOffset += HEAD_OFFSET_SLAVE_FACTOR * (actual - under);
|
||||||
totalWeight += OTHER_WEIGHT;
|
|
||||||
} else if (target.getType() == IKTarget::Type::HmdHead) {
|
} else if (target.getType() == IKTarget::Type::HmdHead) {
|
||||||
|
// we want to shift the hips to bring the head to its designated position
|
||||||
glm::vec3 actual = _skeleton->getAbsolutePose(_headIndex, _relativePoses).trans();
|
glm::vec3 actual = _skeleton->getAbsolutePose(_headIndex, _relativePoses).trans();
|
||||||
glm::vec3 thisOffset = target.getTranslation() - actual;
|
_hipsOffset += target.getTranslation() - actual;
|
||||||
glm::vec3 futureHipsOffset = _hipsOffset + thisOffset;
|
// and ignore all other targets
|
||||||
if (glm::length(glm::vec2(futureHipsOffset.x, futureHipsOffset.z)) < _maxHipsOffsetLength) {
|
newHipsOffset = _hipsOffset;
|
||||||
// it is imperative to shift the hips and bring the head to its designated position
|
break;
|
||||||
// so we slam newHipsOffset here and ignore all other targets
|
} else if (target.getType() == IKTarget::Type::RotationAndPosition) {
|
||||||
additionalHipsOffset = futureHipsOffset - _hipsOffset;
|
glm::vec3 actualPosition = _skeleton->getAbsolutePose(targetIndex, _relativePoses).trans();
|
||||||
totalWeight = 0.0f;
|
glm::vec3 targetPosition = target.getTranslation();
|
||||||
break;
|
newHipsOffset += targetPosition - actualPosition;
|
||||||
} else {
|
|
||||||
additionalHipsOffset += HMD_WEIGHT * (target.getTranslation() - actual);
|
// Add downward pressure on the hips
|
||||||
totalWeight += HMD_WEIGHT;
|
newHipsOffset *= 0.95f;
|
||||||
}
|
newHipsOffset -= 1.0f;
|
||||||
}
|
}
|
||||||
} else if (target.getType() == IKTarget::Type::RotationAndPosition) {
|
} else if (target.getType() == IKTarget::Type::RotationAndPosition) {
|
||||||
glm::vec3 actualPosition = _skeleton->getAbsolutePose(targetIndex, _relativePoses).trans();
|
glm::vec3 actualPosition = _skeleton->getAbsolutePose(targetIndex, _relativePoses).trans();
|
||||||
glm::vec3 targetPosition = target.getTranslation();
|
glm::vec3 targetPosition = target.getTranslation();
|
||||||
additionalHipsOffset += OTHER_WEIGHT * (targetPosition - actualPosition);
|
newHipsOffset += targetPosition - actualPosition;
|
||||||
totalWeight += OTHER_WEIGHT;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (totalWeight > 1.0f) {
|
|
||||||
additionalHipsOffset /= totalWeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add downward pressure on the hips
|
|
||||||
additionalHipsOffset *= 0.95f;
|
|
||||||
additionalHipsOffset -= 1.0f;
|
|
||||||
|
|
||||||
// smooth transitions by relaxing _hipsOffset toward the new value
|
// smooth transitions by relaxing _hipsOffset toward the new value
|
||||||
const float HIPS_OFFSET_SLAVE_TIMESCALE = 0.10f;
|
const float HIPS_OFFSET_SLAVE_TIMESCALE = 0.10f;
|
||||||
float tau = dt < HIPS_OFFSET_SLAVE_TIMESCALE ? dt / HIPS_OFFSET_SLAVE_TIMESCALE : 1.0f;
|
float tau = dt < HIPS_OFFSET_SLAVE_TIMESCALE ? dt / HIPS_OFFSET_SLAVE_TIMESCALE : 1.0f;
|
||||||
_hipsOffset += additionalHipsOffset * tau;
|
_hipsOffset += (newHipsOffset - _hipsOffset) * tau;
|
||||||
|
|
||||||
// clamp the hips offset
|
// clamp the hips offset
|
||||||
float hipsOffsetLength = glm::length(_hipsOffset);
|
float hipsOffsetLength = glm::length(_hipsOffset);
|
||||||
|
|
|
@ -186,6 +186,7 @@ QByteArray AvatarData::toByteArray(AvatarDataDetail dataDetail, quint64 lastSent
|
||||||
bool cullSmallChanges = (dataDetail == CullSmallData);
|
bool cullSmallChanges = (dataDetail == CullSmallData);
|
||||||
bool sendAll = (dataDetail == SendAllData);
|
bool sendAll = (dataDetail == SendAllData);
|
||||||
bool sendMinimum = (dataDetail == MinimumData);
|
bool sendMinimum = (dataDetail == MinimumData);
|
||||||
|
bool sendPALMinimum = (dataDetail == PALMinimum);
|
||||||
|
|
||||||
lazyInitHeadData();
|
lazyInitHeadData();
|
||||||
|
|
||||||
|
@ -222,24 +223,41 @@ QByteArray AvatarData::toByteArray(AvatarDataDetail dataDetail, quint64 lastSent
|
||||||
auto parentID = getParentID();
|
auto parentID = getParentID();
|
||||||
|
|
||||||
bool hasAvatarGlobalPosition = true; // always include global position
|
bool hasAvatarGlobalPosition = true; // always include global position
|
||||||
bool hasAvatarOrientation = sendAll || rotationChangedSince(lastSentTime);
|
bool hasAvatarOrientation = false;
|
||||||
bool hasAvatarBoundingBox = sendAll || avatarBoundingBoxChangedSince(lastSentTime);
|
bool hasAvatarBoundingBox = false;
|
||||||
bool hasAvatarScale = sendAll || avatarScaleChangedSince(lastSentTime);
|
bool hasAvatarScale = false;
|
||||||
bool hasLookAtPosition = sendAll || lookAtPositionChangedSince(lastSentTime);
|
bool hasLookAtPosition = false;
|
||||||
bool hasAudioLoudness = sendAll || audioLoudnessChangedSince(lastSentTime);
|
bool hasAudioLoudness = false;
|
||||||
bool hasSensorToWorldMatrix = sendAll || sensorToWorldMatrixChangedSince(lastSentTime);
|
bool hasSensorToWorldMatrix = false;
|
||||||
bool hasAdditionalFlags = sendAll || additionalFlagsChangedSince(lastSentTime);
|
bool hasAdditionalFlags = false;
|
||||||
|
|
||||||
// local position, and parent info only apply to avatars that are parented. The local position
|
// local position, and parent info only apply to avatars that are parented. The local position
|
||||||
// and the parent info can change independently though, so we track their "changed since"
|
// and the parent info can change independently though, so we track their "changed since"
|
||||||
// separately
|
// separately
|
||||||
bool hasParentInfo = sendAll || parentInfoChangedSince(lastSentTime);
|
bool hasParentInfo = false;
|
||||||
bool hasAvatarLocalPosition = hasParent() && (sendAll ||
|
bool hasAvatarLocalPosition = false;
|
||||||
tranlationChangedSince(lastSentTime) ||
|
|
||||||
parentInfoChangedSince(lastSentTime));
|
|
||||||
|
|
||||||
bool hasFaceTrackerInfo = !dropFaceTracking && hasFaceTracker() && (sendAll || faceTrackerInfoChangedSince(lastSentTime));
|
bool hasFaceTrackerInfo = false;
|
||||||
bool hasJointData = sendAll || !sendMinimum;
|
bool hasJointData = false;
|
||||||
|
|
||||||
|
if (sendPALMinimum) {
|
||||||
|
hasAudioLoudness = true;
|
||||||
|
} else {
|
||||||
|
hasAvatarOrientation = sendAll || rotationChangedSince(lastSentTime);
|
||||||
|
hasAvatarBoundingBox = sendAll || avatarBoundingBoxChangedSince(lastSentTime);
|
||||||
|
hasAvatarScale = sendAll || avatarScaleChangedSince(lastSentTime);
|
||||||
|
hasLookAtPosition = sendAll || lookAtPositionChangedSince(lastSentTime);
|
||||||
|
hasAudioLoudness = sendAll || audioLoudnessChangedSince(lastSentTime);
|
||||||
|
hasSensorToWorldMatrix = sendAll || sensorToWorldMatrixChangedSince(lastSentTime);
|
||||||
|
hasAdditionalFlags = sendAll || additionalFlagsChangedSince(lastSentTime);
|
||||||
|
hasParentInfo = sendAll || parentInfoChangedSince(lastSentTime);
|
||||||
|
hasAvatarLocalPosition = hasParent() && (sendAll ||
|
||||||
|
tranlationChangedSince(lastSentTime) ||
|
||||||
|
parentInfoChangedSince(lastSentTime));
|
||||||
|
|
||||||
|
hasFaceTrackerInfo = !dropFaceTracking && hasFaceTracker() && (sendAll || faceTrackerInfoChangedSince(lastSentTime));
|
||||||
|
hasJointData = sendAll || !sendMinimum;
|
||||||
|
}
|
||||||
|
|
||||||
// Leading flags, to indicate how much data is actually included in the packet...
|
// Leading flags, to indicate how much data is actually included in the packet...
|
||||||
AvatarDataPacket::HasFlags packetStateFlags =
|
AvatarDataPacket::HasFlags packetStateFlags =
|
||||||
|
|
|
@ -376,6 +376,7 @@ public:
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
NoData,
|
NoData,
|
||||||
|
PALMinimum,
|
||||||
MinimumData,
|
MinimumData,
|
||||||
CullSmallData,
|
CullSmallData,
|
||||||
IncludeSmallData,
|
IncludeSmallData,
|
||||||
|
|
|
@ -154,14 +154,6 @@ const gpu::TexturePointer& TextureCache::getBlackTexture() {
|
||||||
return _blackTexture;
|
return _blackTexture;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const gpu::TexturePointer& TextureCache::getNormalFittingTexture() {
|
|
||||||
if (!_normalFittingTexture) {
|
|
||||||
_normalFittingTexture = getImageTexture(PathUtils::resourcesPath() + "images/normalFittingScale.dds");
|
|
||||||
}
|
|
||||||
return _normalFittingTexture;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Extra data for creating textures.
|
/// Extra data for creating textures.
|
||||||
class TextureExtra {
|
class TextureExtra {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -124,9 +124,6 @@ public:
|
||||||
/// Returns the a black texture (useful for a default).
|
/// Returns the a black texture (useful for a default).
|
||||||
const gpu::TexturePointer& getBlackTexture();
|
const gpu::TexturePointer& getBlackTexture();
|
||||||
|
|
||||||
// Returns a map used to compress the normals through a fitting scale algorithm
|
|
||||||
const gpu::TexturePointer& getNormalFittingTexture();
|
|
||||||
|
|
||||||
/// Returns a texture version of an image file
|
/// Returns a texture version of an image file
|
||||||
static gpu::TexturePointer getImageTexture(const QString& path, Type type = Type::DEFAULT_TEXTURE, QVariantMap options = QVariantMap());
|
static gpu::TexturePointer getImageTexture(const QString& path, Type type = Type::DEFAULT_TEXTURE, QVariantMap options = QVariantMap());
|
||||||
|
|
||||||
|
@ -151,7 +148,6 @@ private:
|
||||||
gpu::TexturePointer _grayTexture;
|
gpu::TexturePointer _grayTexture;
|
||||||
gpu::TexturePointer _blueTexture;
|
gpu::TexturePointer _blueTexture;
|
||||||
gpu::TexturePointer _blackTexture;
|
gpu::TexturePointer _blackTexture;
|
||||||
gpu::TexturePointer _normalFittingTexture;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_TextureCache_h
|
#endif // hifi_TextureCache_h
|
||||||
|
|
|
@ -65,25 +65,4 @@ float packUnlit() {
|
||||||
return FRAG_PACK_UNLIT;
|
return FRAG_PACK_UNLIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
<!
|
|
||||||
uniform sampler2D normalFittingMap;
|
|
||||||
|
|
||||||
vec3 bestFitNormal(vec3 normal) {
|
|
||||||
vec3 absNorm = abs(normal);
|
|
||||||
float maxNAbs = max(absNorm.z, max(absNorm.x, absNorm.y));
|
|
||||||
|
|
||||||
vec2 texcoord = (absNorm.z < maxNAbs ?
|
|
||||||
(absNorm.y < maxNAbs ? absNorm.yz : absNorm.xz) :
|
|
||||||
absNorm.xy);
|
|
||||||
texcoord = (texcoord.x < texcoord.y ? texcoord.yx : texcoord.xy);
|
|
||||||
texcoord.y /= texcoord.x;
|
|
||||||
vec3 cN = normal / maxNAbs;
|
|
||||||
|
|
||||||
float fittingScale = texture(normalFittingMap, texcoord).a;
|
|
||||||
cN *= fittingScale;
|
|
||||||
|
|
||||||
return (cN * 0.5 + 0.5);
|
|
||||||
}
|
|
||||||
!>
|
|
||||||
|
|
||||||
<@endif@>
|
<@endif@>
|
||||||
|
|
|
@ -414,8 +414,6 @@ _nextID(0) {
|
||||||
// Set the defaults needed for a simple program
|
// Set the defaults needed for a simple program
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
||||||
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GeometryCache::_simpleTransparentPipeline =
|
GeometryCache::_simpleTransparentPipeline =
|
||||||
|
@ -424,8 +422,6 @@ _nextID(0) {
|
||||||
// Set the defaults needed for a simple program
|
// Set the defaults needed for a simple program
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
||||||
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
GeometryCache::_simpleWirePipeline =
|
GeometryCache::_simpleWirePipeline =
|
||||||
|
@ -1770,7 +1766,6 @@ static void buildWebShader(const std::string& vertShaderText, const std::string&
|
||||||
shaderPointerOut = gpu::Shader::createProgram(VS, PS);
|
shaderPointerOut = gpu::Shader::createProgram(VS, PS);
|
||||||
|
|
||||||
gpu::Shader::BindingSet slotBindings;
|
gpu::Shader::BindingSet slotBindings;
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("normalFittingMap"), render::ShapePipeline::Slot::MAP::NORMAL_FITTING));
|
|
||||||
gpu::Shader::makeProgram(*shaderPointerOut, slotBindings);
|
gpu::Shader::makeProgram(*shaderPointerOut, slotBindings);
|
||||||
auto state = std::make_shared<gpu::State>();
|
auto state = std::make_shared<gpu::State>();
|
||||||
state->setCullMode(gpu::State::CULL_NONE);
|
state->setCullMode(gpu::State::CULL_NONE);
|
||||||
|
@ -1784,9 +1779,6 @@ static void buildWebShader(const std::string& vertShaderText, const std::string&
|
||||||
|
|
||||||
void GeometryCache::bindOpaqueWebBrowserProgram(gpu::Batch& batch, bool isAA) {
|
void GeometryCache::bindOpaqueWebBrowserProgram(gpu::Batch& batch, bool isAA) {
|
||||||
batch.setPipeline(getOpaqueWebBrowserProgram(isAA));
|
batch.setPipeline(getOpaqueWebBrowserProgram(isAA));
|
||||||
// Set a default normal map
|
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gpu::PipelinePointer GeometryCache::getOpaqueWebBrowserProgram(bool isAA) {
|
gpu::PipelinePointer GeometryCache::getOpaqueWebBrowserProgram(bool isAA) {
|
||||||
|
@ -1802,9 +1794,6 @@ gpu::PipelinePointer GeometryCache::getOpaqueWebBrowserProgram(bool isAA) {
|
||||||
|
|
||||||
void GeometryCache::bindTransparentWebBrowserProgram(gpu::Batch& batch, bool isAA) {
|
void GeometryCache::bindTransparentWebBrowserProgram(gpu::Batch& batch, bool isAA) {
|
||||||
batch.setPipeline(getTransparentWebBrowserProgram(isAA));
|
batch.setPipeline(getTransparentWebBrowserProgram(isAA));
|
||||||
// Set a default normal map
|
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gpu::PipelinePointer GeometryCache::getTransparentWebBrowserProgram(bool isAA) {
|
gpu::PipelinePointer GeometryCache::getTransparentWebBrowserProgram(bool isAA) {
|
||||||
|
@ -1827,9 +1816,6 @@ void GeometryCache::bindSimpleProgram(gpu::Batch& batch, bool textured, bool tra
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
||||||
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
||||||
}
|
}
|
||||||
// Set a default normal map
|
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gpu::PipelinePointer GeometryCache::getSimplePipeline(bool textured, bool transparent, bool culled, bool unlit, bool depthBiased) {
|
gpu::PipelinePointer GeometryCache::getSimplePipeline(bool textured, bool transparent, bool culled, bool unlit, bool depthBiased) {
|
||||||
|
@ -1846,7 +1832,6 @@ gpu::PipelinePointer GeometryCache::getSimplePipeline(bool textured, bool transp
|
||||||
_unlitShader = gpu::Shader::createProgram(VS, PSUnlit);
|
_unlitShader = gpu::Shader::createProgram(VS, PSUnlit);
|
||||||
|
|
||||||
gpu::Shader::BindingSet slotBindings;
|
gpu::Shader::BindingSet slotBindings;
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("normalFittingMap"), render::ShapePipeline::Slot::MAP::NORMAL_FITTING));
|
|
||||||
gpu::Shader::makeProgram(*_simpleShader, slotBindings);
|
gpu::Shader::makeProgram(*_simpleShader, slotBindings);
|
||||||
gpu::Shader::makeProgram(*_unlitShader, slotBindings);
|
gpu::Shader::makeProgram(*_unlitShader, slotBindings);
|
||||||
});
|
});
|
||||||
|
|
|
@ -97,6 +97,8 @@ ShapeKey MeshPartPayload::getShapeKey() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
ShapeKey::Builder builder;
|
ShapeKey::Builder builder;
|
||||||
|
builder.withMaterial();
|
||||||
|
|
||||||
if (drawMaterialKey.isTranslucent()) {
|
if (drawMaterialKey.isTranslucent()) {
|
||||||
builder.withTranslucent();
|
builder.withTranslucent();
|
||||||
}
|
}
|
||||||
|
@ -478,6 +480,8 @@ ShapeKey ModelMeshPartPayload::getShapeKey() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
ShapeKey::Builder builder;
|
ShapeKey::Builder builder;
|
||||||
|
builder.withMaterial();
|
||||||
|
|
||||||
if (isTranslucent || _fadeState != FADE_COMPLETE) {
|
if (isTranslucent || _fadeState != FADE_COMPLETE) {
|
||||||
builder.withTranslucent();
|
builder.withTranslucent();
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,7 +75,6 @@ RenderDeferredTask::RenderDeferredTask(RenderFetchCullSortTask::Output items) {
|
||||||
// GPU jobs: Start preparing the primary, deferred and lighting buffer
|
// GPU jobs: Start preparing the primary, deferred and lighting buffer
|
||||||
const auto primaryFramebuffer = addJob<PreparePrimaryFramebuffer>("PreparePrimaryBuffer");
|
const auto primaryFramebuffer = addJob<PreparePrimaryFramebuffer>("PreparePrimaryBuffer");
|
||||||
|
|
||||||
// const auto fullFrameRangeTimer = addJob<BeginGPURangeTimer>("BeginRangeTimer");
|
|
||||||
const auto opaqueRangeTimer = addJob<BeginGPURangeTimer>("BeginOpaqueRangeTimer", "DrawOpaques");
|
const auto opaqueRangeTimer = addJob<BeginGPURangeTimer>("BeginOpaqueRangeTimer", "DrawOpaques");
|
||||||
|
|
||||||
const auto prepareDeferredInputs = PrepareDeferred::Inputs(primaryFramebuffer, lightingModel).hasVarying();
|
const auto prepareDeferredInputs = PrepareDeferred::Inputs(primaryFramebuffer, lightingModel).hasVarying();
|
||||||
|
@ -154,21 +153,25 @@ RenderDeferredTask::RenderDeferredTask(RenderFetchCullSortTask::Output items) {
|
||||||
const auto toneMappingInputs = render::Varying(ToneMappingDeferred::Inputs(lightingFramebuffer, primaryFramebuffer));
|
const auto toneMappingInputs = render::Varying(ToneMappingDeferred::Inputs(lightingFramebuffer, primaryFramebuffer));
|
||||||
addJob<ToneMappingDeferred>("ToneMapping", toneMappingInputs);
|
addJob<ToneMappingDeferred>("ToneMapping", toneMappingInputs);
|
||||||
|
|
||||||
|
{ // DEbug the bounds of the rendered items, still look at the zbuffer
|
||||||
|
addJob<DrawBounds>("DrawMetaBounds", metas);
|
||||||
|
addJob<DrawBounds>("DrawOpaqueBounds", opaques);
|
||||||
|
addJob<DrawBounds>("DrawTransparentBounds", transparents);
|
||||||
|
}
|
||||||
|
|
||||||
// Overlays
|
// Overlays
|
||||||
const auto overlayOpaquesInputs = DrawOverlay3D::Inputs(overlayOpaques, lightingModel).hasVarying();
|
const auto overlayOpaquesInputs = DrawOverlay3D::Inputs(overlayOpaques, lightingModel).hasVarying();
|
||||||
const auto overlayTransparentsInputs = DrawOverlay3D::Inputs(overlayTransparents, lightingModel).hasVarying();
|
const auto overlayTransparentsInputs = DrawOverlay3D::Inputs(overlayTransparents, lightingModel).hasVarying();
|
||||||
addJob<DrawOverlay3D>("DrawOverlay3DOpaque", overlayOpaquesInputs, true);
|
addJob<DrawOverlay3D>("DrawOverlay3DOpaque", overlayOpaquesInputs, true);
|
||||||
addJob<DrawOverlay3D>("DrawOverlay3DTransparent", overlayTransparentsInputs, false);
|
addJob<DrawOverlay3D>("DrawOverlay3DTransparent", overlayTransparentsInputs, false);
|
||||||
|
|
||||||
// Debugging stages
|
{ // DEbug the bounds of the rendered OVERLAY items, still look at the zbuffer
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
// Bounds do not draw on stencil buffer, so they must come last
|
|
||||||
addJob<DrawBounds>("DrawMetaBounds", metas);
|
|
||||||
addJob<DrawBounds>("DrawOverlayOpaqueBounds", overlayOpaques);
|
addJob<DrawBounds>("DrawOverlayOpaqueBounds", overlayOpaques);
|
||||||
addJob<DrawBounds>("DrawOverlayTransparentBounds", overlayTransparents);
|
addJob<DrawBounds>("DrawOverlayTransparentBounds", overlayTransparents);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Debugging stages
|
||||||
|
{
|
||||||
// Debugging Deferred buffer job
|
// Debugging Deferred buffer job
|
||||||
const auto debugFramebuffers = render::Varying(DebugDeferredBuffer::Inputs(deferredFramebuffer, linearDepthTarget, surfaceGeometryFramebuffer, ambientOcclusionFramebuffer));
|
const auto debugFramebuffers = render::Varying(DebugDeferredBuffer::Inputs(deferredFramebuffer, linearDepthTarget, surfaceGeometryFramebuffer, ambientOcclusionFramebuffer));
|
||||||
addJob<DebugDeferredBuffer>("DebugDeferredBuffer", debugFramebuffers);
|
addJob<DebugDeferredBuffer>("DebugDeferredBuffer", debugFramebuffers);
|
||||||
|
@ -208,9 +211,6 @@ RenderDeferredTask::RenderDeferredTask(RenderFetchCullSortTask::Output items) {
|
||||||
|
|
||||||
// Blit!
|
// Blit!
|
||||||
addJob<Blit>("Blit", primaryFramebuffer);
|
addJob<Blit>("Blit", primaryFramebuffer);
|
||||||
|
|
||||||
// addJob<EndGPURangeTimer>("RangeTimer", fullFrameRangeTimer);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void BeginGPURangeTimer::run(const render::SceneContextPointer& sceneContext, const render::RenderContextPointer& renderContext, gpu::RangeTimerPointer& timer) {
|
void BeginGPURangeTimer::run(const render::SceneContextPointer& sceneContext, const render::RenderContextPointer& renderContext, gpu::RangeTimerPointer& timer) {
|
||||||
|
|
|
@ -50,9 +50,13 @@
|
||||||
|
|
||||||
#include "overlay3D_vert.h"
|
#include "overlay3D_vert.h"
|
||||||
#include "overlay3D_frag.h"
|
#include "overlay3D_frag.h"
|
||||||
|
#include "overlay3D_model_frag.h"
|
||||||
|
#include "overlay3D_model_translucent_frag.h"
|
||||||
#include "overlay3D_translucent_frag.h"
|
#include "overlay3D_translucent_frag.h"
|
||||||
#include "overlay3D_unlit_frag.h"
|
#include "overlay3D_unlit_frag.h"
|
||||||
#include "overlay3D_translucent_unlit_frag.h"
|
#include "overlay3D_translucent_unlit_frag.h"
|
||||||
|
#include "overlay3D_model_unlit_frag.h"
|
||||||
|
#include "overlay3D_model_translucent_unlit_frag.h"
|
||||||
|
|
||||||
|
|
||||||
using namespace render;
|
using namespace render;
|
||||||
|
@ -70,15 +74,24 @@ void lightBatchSetter(const ShapePipeline& pipeline, gpu::Batch& batch);
|
||||||
|
|
||||||
void initOverlay3DPipelines(ShapePlumber& plumber) {
|
void initOverlay3DPipelines(ShapePlumber& plumber) {
|
||||||
auto vertex = gpu::Shader::createVertex(std::string(overlay3D_vert));
|
auto vertex = gpu::Shader::createVertex(std::string(overlay3D_vert));
|
||||||
|
auto vertexModel = gpu::Shader::createVertex(std::string(model_vert));
|
||||||
auto pixel = gpu::Shader::createPixel(std::string(overlay3D_frag));
|
auto pixel = gpu::Shader::createPixel(std::string(overlay3D_frag));
|
||||||
auto pixelTranslucent = gpu::Shader::createPixel(std::string(overlay3D_translucent_frag));
|
auto pixelTranslucent = gpu::Shader::createPixel(std::string(overlay3D_translucent_frag));
|
||||||
auto pixelUnlit = gpu::Shader::createPixel(std::string(overlay3D_unlit_frag));
|
auto pixelUnlit = gpu::Shader::createPixel(std::string(overlay3D_unlit_frag));
|
||||||
auto pixelTranslucentUnlit = gpu::Shader::createPixel(std::string(overlay3D_translucent_unlit_frag));
|
auto pixelTranslucentUnlit = gpu::Shader::createPixel(std::string(overlay3D_translucent_unlit_frag));
|
||||||
|
auto pixelModel = gpu::Shader::createPixel(std::string(overlay3D_model_frag));
|
||||||
|
auto pixelModelTranslucent = gpu::Shader::createPixel(std::string(overlay3D_model_translucent_frag));
|
||||||
|
auto pixelModelUnlit = gpu::Shader::createPixel(std::string(overlay3D_model_unlit_frag));
|
||||||
|
auto pixelModelTranslucentUnlit = gpu::Shader::createPixel(std::string(overlay3D_model_translucent_unlit_frag));
|
||||||
|
|
||||||
auto opaqueProgram = gpu::Shader::createProgram(vertex, pixel);
|
auto opaqueProgram = gpu::Shader::createProgram(vertex, pixel);
|
||||||
auto translucentProgram = gpu::Shader::createProgram(vertex, pixelTranslucent);
|
auto translucentProgram = gpu::Shader::createProgram(vertex, pixelTranslucent);
|
||||||
auto unlitOpaqueProgram = gpu::Shader::createProgram(vertex, pixelUnlit);
|
auto unlitOpaqueProgram = gpu::Shader::createProgram(vertex, pixelUnlit);
|
||||||
auto unlitTranslucentProgram = gpu::Shader::createProgram(vertex, pixelTranslucentUnlit);
|
auto unlitTranslucentProgram = gpu::Shader::createProgram(vertex, pixelTranslucentUnlit);
|
||||||
|
auto materialOpaqueProgram = gpu::Shader::createProgram(vertexModel, pixelModel);
|
||||||
|
auto materialTranslucentProgram = gpu::Shader::createProgram(vertexModel, pixelModelTranslucent);
|
||||||
|
auto materialUnlitOpaqueProgram = gpu::Shader::createProgram(vertexModel, pixelModel);
|
||||||
|
auto materialUnlitTranslucentProgram = gpu::Shader::createProgram(vertexModel, pixelModelTranslucent);
|
||||||
|
|
||||||
for (int i = 0; i < 8; i++) {
|
for (int i = 0; i < 8; i++) {
|
||||||
bool isCulled = (i & 1);
|
bool isCulled = (i & 1);
|
||||||
|
@ -103,14 +116,20 @@ void initOverlay3DPipelines(ShapePlumber& plumber) {
|
||||||
}
|
}
|
||||||
|
|
||||||
ShapeKey::Filter::Builder builder;
|
ShapeKey::Filter::Builder builder;
|
||||||
|
|
||||||
isCulled ? builder.withCullFace() : builder.withoutCullFace();
|
isCulled ? builder.withCullFace() : builder.withoutCullFace();
|
||||||
isBiased ? builder.withDepthBias() : builder.withoutDepthBias();
|
isBiased ? builder.withDepthBias() : builder.withoutDepthBias();
|
||||||
isOpaque ? builder.withOpaque() : builder.withTranslucent();
|
isOpaque ? builder.withOpaque() : builder.withTranslucent();
|
||||||
|
|
||||||
auto simpleProgram = isOpaque ? opaqueProgram : translucentProgram;
|
auto simpleProgram = isOpaque ? opaqueProgram : translucentProgram;
|
||||||
auto unlitProgram = isOpaque ? unlitOpaqueProgram : unlitTranslucentProgram;
|
auto unlitProgram = isOpaque ? unlitOpaqueProgram : unlitTranslucentProgram;
|
||||||
plumber.addPipeline(builder.withoutUnlit().build(), simpleProgram, state, &lightBatchSetter);
|
auto materialProgram = isOpaque ? materialOpaqueProgram : materialTranslucentProgram;
|
||||||
plumber.addPipeline(builder.withUnlit().build(), unlitProgram, state, &batchSetter);
|
auto materialUnlitProgram = isOpaque ? materialUnlitOpaqueProgram : materialUnlitTranslucentProgram;
|
||||||
|
|
||||||
|
plumber.addPipeline(builder.withMaterial().build().key(), materialProgram, state, &lightBatchSetter);
|
||||||
|
plumber.addPipeline(builder.withMaterial().withUnlit().build().key(), materialUnlitProgram, state, &batchSetter);
|
||||||
|
plumber.addPipeline(builder.withoutUnlit().withoutMaterial().build().key(), simpleProgram, state, &lightBatchSetter);
|
||||||
|
plumber.addPipeline(builder.withUnlit().withoutMaterial().build().key(), unlitProgram, state, &batchSetter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,78 +163,87 @@ void initDeferredPipelines(render::ShapePlumber& plumber) {
|
||||||
// TODO: Refactor this to use a filter
|
// TODO: Refactor this to use a filter
|
||||||
// Opaques
|
// Opaques
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder(),
|
Key::Builder().withMaterial(),
|
||||||
modelVertex, modelPixel);
|
modelVertex, modelPixel);
|
||||||
|
addPipeline(
|
||||||
|
Key::Builder().withMaterial().withUnlit(),
|
||||||
|
modelVertex, modelUnlitPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withUnlit(),
|
Key::Builder().withUnlit(),
|
||||||
modelVertex, modelUnlitPixel);
|
modelVertex, modelUnlitPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTangents(),
|
Key::Builder().withMaterial().withTangents(),
|
||||||
modelNormalMapVertex, modelNormalMapPixel);
|
modelNormalMapVertex, modelNormalMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSpecular(),
|
Key::Builder().withMaterial().withSpecular(),
|
||||||
modelVertex, modelSpecularMapPixel);
|
modelVertex, modelSpecularMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withTangents().withSpecular(),
|
||||||
modelNormalMapVertex, modelNormalSpecularMapPixel);
|
modelNormalMapVertex, modelNormalSpecularMapPixel);
|
||||||
// Translucents
|
// Translucents
|
||||||
|
addPipeline(
|
||||||
|
Key::Builder().withMaterial().withTranslucent(),
|
||||||
|
modelVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTranslucent(),
|
Key::Builder().withTranslucent(),
|
||||||
modelVertex, modelTranslucentPixel);
|
modelVertex, modelTranslucentPixel);
|
||||||
|
addPipeline(
|
||||||
|
Key::Builder().withMaterial().withTranslucent().withUnlit(),
|
||||||
|
modelVertex, modelTranslucentUnlitPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTranslucent().withUnlit(),
|
Key::Builder().withTranslucent().withUnlit(),
|
||||||
modelVertex, modelTranslucentUnlitPixel);
|
modelVertex, modelTranslucentUnlitPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTranslucent().withTangents(),
|
Key::Builder().withMaterial().withTranslucent().withTangents(),
|
||||||
modelNormalMapVertex, modelTranslucentPixel);
|
modelNormalMapVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTranslucent().withSpecular(),
|
Key::Builder().withMaterial().withTranslucent().withSpecular(),
|
||||||
modelVertex, modelTranslucentPixel);
|
modelVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTranslucent().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withTranslucent().withTangents().withSpecular(),
|
||||||
modelNormalMapVertex, modelTranslucentPixel);
|
modelNormalMapVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
// FIXME: Ignore lightmap for translucents meshpart
|
// FIXME: Ignore lightmap for translucents meshpart
|
||||||
Key::Builder().withTranslucent().withLightmap(),
|
Key::Builder().withMaterial().withTranslucent().withLightmap(),
|
||||||
modelVertex, modelTranslucentPixel);
|
modelVertex, modelTranslucentPixel);
|
||||||
// Lightmapped
|
// Lightmapped
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withLightmap(),
|
Key::Builder().withMaterial().withLightmap(),
|
||||||
modelLightmapVertex, modelLightmapPixel);
|
modelLightmapVertex, modelLightmapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withLightmap().withTangents(),
|
Key::Builder().withMaterial().withLightmap().withTangents(),
|
||||||
modelLightmapNormalMapVertex, modelLightmapNormalMapPixel);
|
modelLightmapNormalMapVertex, modelLightmapNormalMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withLightmap().withSpecular(),
|
Key::Builder().withMaterial().withLightmap().withSpecular(),
|
||||||
modelLightmapVertex, modelLightmapSpecularMapPixel);
|
modelLightmapVertex, modelLightmapSpecularMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withLightmap().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withLightmap().withTangents().withSpecular(),
|
||||||
modelLightmapNormalMapVertex, modelLightmapNormalSpecularMapPixel);
|
modelLightmapNormalMapVertex, modelLightmapNormalSpecularMapPixel);
|
||||||
// Skinned
|
// Skinned
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned(),
|
Key::Builder().withMaterial().withSkinned(),
|
||||||
skinModelVertex, modelPixel);
|
skinModelVertex, modelPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTangents(),
|
Key::Builder().withMaterial().withSkinned().withTangents(),
|
||||||
skinModelNormalMapVertex, modelNormalMapPixel);
|
skinModelNormalMapVertex, modelNormalMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withSpecular(),
|
||||||
skinModelVertex, modelSpecularMapPixel);
|
skinModelVertex, modelSpecularMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withTangents().withSpecular(),
|
||||||
skinModelNormalMapVertex, modelNormalSpecularMapPixel);
|
skinModelNormalMapVertex, modelNormalSpecularMapPixel);
|
||||||
// Skinned and Translucent
|
// Skinned and Translucent
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTranslucent(),
|
Key::Builder().withMaterial().withSkinned().withTranslucent(),
|
||||||
skinModelVertex, modelTranslucentPixel);
|
skinModelVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTranslucent().withTangents(),
|
Key::Builder().withMaterial().withSkinned().withTranslucent().withTangents(),
|
||||||
skinModelNormalMapVertex, modelTranslucentPixel);
|
skinModelNormalMapVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTranslucent().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withTranslucent().withSpecular(),
|
||||||
skinModelVertex, modelTranslucentPixel);
|
skinModelVertex, modelTranslucentPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTranslucent().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withTranslucent().withTangents().withSpecular(),
|
||||||
skinModelNormalMapVertex, modelTranslucentPixel);
|
skinModelNormalMapVertex, modelTranslucentPixel);
|
||||||
// Depth-only
|
// Depth-only
|
||||||
addPipeline(
|
addPipeline(
|
||||||
|
@ -244,32 +272,32 @@ void initForwardPipelines(render::ShapePlumber& plumber) {
|
||||||
auto addPipeline = std::bind(&addPlumberPipeline, std::ref(plumber), _1, _2, _3);
|
auto addPipeline = std::bind(&addPlumberPipeline, std::ref(plumber), _1, _2, _3);
|
||||||
// Opaques
|
// Opaques
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder(),
|
Key::Builder().withMaterial(),
|
||||||
modelVertex, modelPixel);
|
modelVertex, modelPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withUnlit(),
|
Key::Builder().withMaterial().withUnlit(),
|
||||||
modelVertex, modelUnlitPixel);
|
modelVertex, modelUnlitPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTangents(),
|
Key::Builder().withMaterial().withTangents(),
|
||||||
modelNormalMapVertex, modelNormalMapPixel);
|
modelNormalMapVertex, modelNormalMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSpecular(),
|
Key::Builder().withMaterial().withSpecular(),
|
||||||
modelVertex, modelSpecularMapPixel);
|
modelVertex, modelSpecularMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withTangents().withSpecular(),
|
||||||
modelNormalMapVertex, modelNormalSpecularMapPixel);
|
modelNormalMapVertex, modelNormalSpecularMapPixel);
|
||||||
// Skinned
|
// Skinned
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned(),
|
Key::Builder().withMaterial().withSkinned(),
|
||||||
skinModelVertex, modelPixel);
|
skinModelVertex, modelPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTangents(),
|
Key::Builder().withMaterial().withSkinned().withTangents(),
|
||||||
skinModelNormalMapVertex, modelNormalMapPixel);
|
skinModelNormalMapVertex, modelNormalMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withSpecular(),
|
||||||
skinModelVertex, modelSpecularMapPixel);
|
skinModelVertex, modelSpecularMapPixel);
|
||||||
addPipeline(
|
addPipeline(
|
||||||
Key::Builder().withSkinned().withTangents().withSpecular(),
|
Key::Builder().withMaterial().withSkinned().withTangents().withSpecular(),
|
||||||
skinModelNormalMapVertex, modelNormalSpecularMapPixel);
|
skinModelNormalMapVertex, modelNormalSpecularMapPixel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -319,9 +347,6 @@ void batchSetter(const ShapePipeline& pipeline, gpu::Batch& batch) {
|
||||||
// Set a default albedo map
|
// Set a default albedo map
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::ALBEDO,
|
||||||
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
DependencyManager::get<TextureCache>()->getWhiteTexture());
|
||||||
// Set a default normal map
|
|
||||||
batch.setResourceTexture(render::ShapePipeline::Slot::MAP::NORMAL_FITTING,
|
|
||||||
DependencyManager::get<TextureCache>()->getNormalFittingTexture());
|
|
||||||
|
|
||||||
// Set a default material
|
// Set a default material
|
||||||
if (pipeline.locations->materialBufferUnit >= 0) {
|
if (pipeline.locations->materialBufferUnit >= 0) {
|
||||||
|
|
88
libraries/render-utils/src/overlay3D_model.slf
Normal file
88
libraries/render-utils/src/overlay3D_model.slf
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
<@include gpu/Config.slh@>
|
||||||
|
<$VERSION_HEADER$>
|
||||||
|
// Generated on <$_SCRIBE_DATE$>
|
||||||
|
// overlay3D.slf
|
||||||
|
// fragment shader
|
||||||
|
//
|
||||||
|
// Created by Sam Gateau on 6/16/15.
|
||||||
|
// 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
|
||||||
|
//
|
||||||
|
|
||||||
|
<@include DeferredGlobalLight.slh@>
|
||||||
|
<$declareEvalSkyboxGlobalColor()$>
|
||||||
|
|
||||||
|
<@include model/Material.slh@>
|
||||||
|
|
||||||
|
<@include gpu/Transform.slh@>
|
||||||
|
<$declareStandardCameraTransform()$>
|
||||||
|
|
||||||
|
<@include MaterialTextures.slh@>
|
||||||
|
<$declareMaterialTextures(ALBEDO, ROUGHNESS, _SCRIBE_NULL, _SCRIBE_NULL, EMISSIVE, OCCLUSION)$>
|
||||||
|
|
||||||
|
in vec2 _texCoord0;
|
||||||
|
in vec2 _texCoord1;
|
||||||
|
in vec4 _position;
|
||||||
|
in vec3 _normal;
|
||||||
|
in vec3 _color;
|
||||||
|
in float _alpha;
|
||||||
|
|
||||||
|
out vec4 _fragColor;
|
||||||
|
|
||||||
|
void main(void) {
|
||||||
|
Material mat = getMaterial();
|
||||||
|
int matKey = getMaterialKey(mat);
|
||||||
|
<$fetchMaterialTexturesCoord0(matKey, _texCoord0, albedoTex, roughnessTex, _SCRIBE_NULL, _SCRIBE_NULL, emissiveTex)$>
|
||||||
|
<$fetchMaterialTexturesCoord1(matKey, _texCoord1, occlusionTex)$>
|
||||||
|
|
||||||
|
float opacity = 1.0;
|
||||||
|
<$evalMaterialOpacity(albedoTex.a, opacity, matKey, opacity)$>;
|
||||||
|
<$discardTransparent(opacity)$>;
|
||||||
|
|
||||||
|
vec3 albedo = getMaterialAlbedo(mat);
|
||||||
|
<$evalMaterialAlbedo(albedoTex, albedo, matKey, albedo)$>;
|
||||||
|
albedo *= _color;
|
||||||
|
|
||||||
|
float metallic = getMaterialMetallic(mat);
|
||||||
|
vec3 fresnel = vec3(0.03); // Default Di-electric fresnel value
|
||||||
|
if (metallic <= 0.5) {
|
||||||
|
metallic = 0.0;
|
||||||
|
} else {
|
||||||
|
fresnel = albedo;
|
||||||
|
metallic = 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
float roughness = getMaterialRoughness(mat);
|
||||||
|
<$evalMaterialRoughness(roughnessTex, roughness, matKey, roughness)$>;
|
||||||
|
|
||||||
|
vec3 emissive = getMaterialEmissive(mat);
|
||||||
|
<$evalMaterialEmissive(emissiveTex, emissive, matKey, emissive)$>;
|
||||||
|
|
||||||
|
|
||||||
|
vec3 fragPosition = _position.xyz;
|
||||||
|
//vec3 fragNormal = normalize(_normal);
|
||||||
|
|
||||||
|
TransformCamera cam = getTransformCamera();
|
||||||
|
vec3 fragNormal;
|
||||||
|
<$transformEyeToWorldDir(cam, _normal, fragNormal)$>;
|
||||||
|
|
||||||
|
vec4 color = vec4(evalSkyboxGlobalColor(
|
||||||
|
cam._viewInverse,
|
||||||
|
1.0,
|
||||||
|
occlusionTex,
|
||||||
|
fragPosition,
|
||||||
|
fragNormal,
|
||||||
|
albedo,
|
||||||
|
fresnel,
|
||||||
|
metallic,
|
||||||
|
roughness),
|
||||||
|
opacity);
|
||||||
|
|
||||||
|
// And emissive
|
||||||
|
color.rgb += emissive * isEmissiveEnabled();
|
||||||
|
|
||||||
|
// Apply standard tone mapping
|
||||||
|
_fragColor = vec4(pow(color.xyz, vec3(1.0 / 2.2)), color.w);
|
||||||
|
}
|
83
libraries/render-utils/src/overlay3D_model_translucent.slf
Normal file
83
libraries/render-utils/src/overlay3D_model_translucent.slf
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
<@include gpu/Config.slh@>
|
||||||
|
<$VERSION_HEADER$>
|
||||||
|
// Generated on <$_SCRIBE_DATE$>
|
||||||
|
// overlay3D_model_transparent.slf
|
||||||
|
//
|
||||||
|
// Created by Sam Gateau on 2/27/2017.
|
||||||
|
// Copyright 2017 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
|
||||||
|
//
|
||||||
|
|
||||||
|
<@include DeferredGlobalLight.slh@>
|
||||||
|
<$declareEvalGlobalLightingAlphaBlended()$>
|
||||||
|
|
||||||
|
<@include model/Material.slh@>
|
||||||
|
|
||||||
|
<@include gpu/Transform.slh@>
|
||||||
|
<$declareStandardCameraTransform()$>
|
||||||
|
|
||||||
|
<@include MaterialTextures.slh@>
|
||||||
|
<$declareMaterialTextures(ALBEDO, ROUGHNESS, _SCRIBE_NULL, _SCRIBE_NULL, EMISSIVE, OCCLUSION)$>
|
||||||
|
|
||||||
|
in vec2 _texCoord0;
|
||||||
|
in vec2 _texCoord1;
|
||||||
|
in vec4 _position;
|
||||||
|
in vec3 _normal;
|
||||||
|
in vec3 _color;
|
||||||
|
in float _alpha;
|
||||||
|
|
||||||
|
out vec4 _fragColor;
|
||||||
|
|
||||||
|
void main(void) {
|
||||||
|
Material mat = getMaterial();
|
||||||
|
int matKey = getMaterialKey(mat);
|
||||||
|
<$fetchMaterialTexturesCoord0(matKey, _texCoord0, albedoTex, roughnessTex, _SCRIBE_NULL, _SCRIBE_NULL, emissiveTex)$>
|
||||||
|
<$fetchMaterialTexturesCoord1(matKey, _texCoord1, occlusionTex)$>
|
||||||
|
|
||||||
|
float opacity = 1.0;
|
||||||
|
<$evalMaterialOpacity(albedoTex.a, opacity, matKey, opacity)$>;
|
||||||
|
|
||||||
|
vec3 albedo = getMaterialAlbedo(mat);
|
||||||
|
<$evalMaterialAlbedo(albedoTex, albedo, matKey, albedo)$>;
|
||||||
|
albedo *= _color;
|
||||||
|
|
||||||
|
float metallic = getMaterialMetallic(mat);
|
||||||
|
vec3 fresnel = vec3(0.03); // Default Di-electric fresnel value
|
||||||
|
if (metallic <= 0.5) {
|
||||||
|
metallic = 0.0;
|
||||||
|
} else {
|
||||||
|
fresnel = albedo;
|
||||||
|
metallic = 1.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
float roughness = getMaterialRoughness(mat);
|
||||||
|
<$evalMaterialRoughness(roughnessTex, roughness, matKey, roughness)$>;
|
||||||
|
|
||||||
|
vec3 emissive = getMaterialEmissive(mat);
|
||||||
|
<$evalMaterialEmissive(emissiveTex, emissive, matKey, emissive)$>;
|
||||||
|
|
||||||
|
|
||||||
|
vec3 fragPosition = _position.xyz;
|
||||||
|
|
||||||
|
TransformCamera cam = getTransformCamera();
|
||||||
|
vec3 fragNormal;
|
||||||
|
<$transformEyeToWorldDir(cam, _normal, fragNormal)$>
|
||||||
|
|
||||||
|
vec4 color = vec4(evalGlobalLightingAlphaBlended(
|
||||||
|
cam._viewInverse,
|
||||||
|
1.0,
|
||||||
|
occlusionTex,
|
||||||
|
fragPosition,
|
||||||
|
fragNormal,
|
||||||
|
albedo,
|
||||||
|
fresnel,
|
||||||
|
metallic,
|
||||||
|
emissive,
|
||||||
|
roughness, opacity),
|
||||||
|
opacity);
|
||||||
|
|
||||||
|
// Apply standard tone mapping
|
||||||
|
_fragColor = vec4(pow(color.xyz, vec3(1.0 / 2.2)), color.w);
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
<@include gpu/Config.slh@>
|
||||||
|
<$VERSION_HEADER$>
|
||||||
|
// Generated on <$_SCRIBE_DATE$>
|
||||||
|
// overlay3D-model_transparent_unlit.slf
|
||||||
|
// fragment shader
|
||||||
|
//
|
||||||
|
// Created by Sam Gateau on 2/28/2017.
|
||||||
|
// 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
|
||||||
|
//
|
||||||
|
|
||||||
|
<@include LightingModel.slh@>
|
||||||
|
<@include model/Material.slh@>
|
||||||
|
|
||||||
|
<@include MaterialTextures.slh@>
|
||||||
|
<$declareMaterialTextures(ALBEDO)$>
|
||||||
|
|
||||||
|
in vec2 _texCoord0;
|
||||||
|
in vec3 _normal;
|
||||||
|
in vec3 _color;
|
||||||
|
in float _alpha;
|
||||||
|
|
||||||
|
out vec4 _fragColor;
|
||||||
|
|
||||||
|
void main(void) {
|
||||||
|
|
||||||
|
Material mat = getMaterial();
|
||||||
|
int matKey = getMaterialKey(mat);
|
||||||
|
<$fetchMaterialTexturesCoord0(matKey, _texCoord0, albedoTex)$>
|
||||||
|
|
||||||
|
float opacity = 1.0;
|
||||||
|
<$evalMaterialOpacity(albedoTex.a, opacity, matKey, opacity)$>;
|
||||||
|
|
||||||
|
vec3 albedo = getMaterialAlbedo(mat);
|
||||||
|
<$evalMaterialAlbedo(albedoTex, albedo, matKey, albedo)$>;
|
||||||
|
albedo *= _color;
|
||||||
|
|
||||||
|
vec4 color = vec4(albedo * isUnlitEnabled(), opacity);
|
||||||
|
|
||||||
|
_fragColor = vec4(pow(color.xyz, vec3(1.0 / 2.2)), color.w);
|
||||||
|
}
|
44
libraries/render-utils/src/overlay3D_model_unlit.slf
Normal file
44
libraries/render-utils/src/overlay3D_model_unlit.slf
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
<@include gpu/Config.slh@>
|
||||||
|
<$VERSION_HEADER$>
|
||||||
|
// Generated on <$_SCRIBE_DATE$>
|
||||||
|
// overlay3D-model_unlit.slf
|
||||||
|
// fragment shader
|
||||||
|
//
|
||||||
|
// Created by Sam Gateau on 2/28/2017.
|
||||||
|
// 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
|
||||||
|
//
|
||||||
|
|
||||||
|
<@include LightingModel.slh@>
|
||||||
|
<@include model/Material.slh@>
|
||||||
|
|
||||||
|
<@include MaterialTextures.slh@>
|
||||||
|
<$declareMaterialTextures(ALBEDO)$>
|
||||||
|
|
||||||
|
in vec2 _texCoord0;
|
||||||
|
in vec3 _normal;
|
||||||
|
in vec3 _color;
|
||||||
|
in float _alpha;
|
||||||
|
|
||||||
|
out vec4 _fragColor;
|
||||||
|
|
||||||
|
void main(void) {
|
||||||
|
|
||||||
|
Material mat = getMaterial();
|
||||||
|
int matKey = getMaterialKey(mat);
|
||||||
|
<$fetchMaterialTexturesCoord0(matKey, _texCoord0, albedoTex)$>
|
||||||
|
|
||||||
|
float opacity = 1.0;
|
||||||
|
<$evalMaterialOpacity(albedoTex.a, opacity, matKey, opacity)$>;
|
||||||
|
<$discardTransparent(opacity)$>;
|
||||||
|
|
||||||
|
vec3 albedo = getMaterialAlbedo(mat);
|
||||||
|
<$evalMaterialAlbedo(albedoTex, albedo, matKey, albedo)$>;
|
||||||
|
albedo *= _color;
|
||||||
|
|
||||||
|
vec4 color = vec4(albedo * isUnlitEnabled(), opacity);
|
||||||
|
|
||||||
|
_fragColor = vec4(pow(color.xyz, vec3(1.0 / 2.2)), color.w);
|
||||||
|
}
|
|
@ -20,8 +20,6 @@ void renderItems(const SceneContextPointer& sceneContext, const RenderContextPoi
|
||||||
void renderShapes(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext, const ShapePlumberPointer& shapeContext, const ItemBounds& inItems, int maxDrawnItems = -1);
|
void renderShapes(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext, const ShapePlumberPointer& shapeContext, const ItemBounds& inItems, int maxDrawnItems = -1);
|
||||||
void renderStateSortShapes(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext, const ShapePlumberPointer& shapeContext, const ItemBounds& inItems, int maxDrawnItems = -1);
|
void renderStateSortShapes(const SceneContextPointer& sceneContext, const RenderContextPointer& renderContext, const ShapePlumberPointer& shapeContext, const ItemBounds& inItems, int maxDrawnItems = -1);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class DrawLightConfig : public Job::Config {
|
class DrawLightConfig : public Job::Config {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(int numDrawn READ getNumDrawn NOTIFY numDrawnChanged)
|
Q_PROPERTY(int numDrawn READ getNumDrawn NOTIFY numDrawnChanged)
|
||||||
|
|
|
@ -39,6 +39,10 @@ void ShapePlumber::addPipelineHelper(const Filter& filter, ShapeKey key, int bit
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Add the brand new pipeline and cache its location in the lib
|
// Add the brand new pipeline and cache its location in the lib
|
||||||
|
auto precedent = _pipelineMap.find(key);
|
||||||
|
if (precedent != _pipelineMap.end()) {
|
||||||
|
qCDebug(renderlogging) << "Key already assigned: " << key;
|
||||||
|
}
|
||||||
_pipelineMap.insert(PipelineMap::value_type(key, pipeline));
|
_pipelineMap.insert(PipelineMap::value_type(key, pipeline));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,16 +69,11 @@ void ShapePlumber::addPipeline(const Filter& filter, const gpu::ShaderPointer& p
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("lightBuffer"), Slot::BUFFER::LIGHT));
|
slotBindings.insert(gpu::Shader::Binding(std::string("lightBuffer"), Slot::BUFFER::LIGHT));
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("lightAmbientBuffer"), Slot::BUFFER::LIGHT_AMBIENT_BUFFER));
|
slotBindings.insert(gpu::Shader::Binding(std::string("lightAmbientBuffer"), Slot::BUFFER::LIGHT_AMBIENT_BUFFER));
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("skyboxMap"), Slot::MAP::LIGHT_AMBIENT));
|
slotBindings.insert(gpu::Shader::Binding(std::string("skyboxMap"), Slot::MAP::LIGHT_AMBIENT));
|
||||||
slotBindings.insert(gpu::Shader::Binding(std::string("normalFittingMap"), Slot::NORMAL_FITTING));
|
|
||||||
|
|
||||||
gpu::Shader::makeProgram(*program, slotBindings);
|
gpu::Shader::makeProgram(*program, slotBindings);
|
||||||
|
|
||||||
auto locations = std::make_shared<Locations>();
|
auto locations = std::make_shared<Locations>();
|
||||||
locations->normalFittingMapUnit = program->getTextures().findLocation("normalFittingMap");
|
|
||||||
if (program->getTextures().findLocation("normalFittingMap") > -1) {
|
|
||||||
locations->normalFittingMapUnit = program->getTextures().findLocation("normalFittingMap");
|
|
||||||
|
|
||||||
}
|
|
||||||
locations->albedoTextureUnit = program->getTextures().findLocation("albedoMap");
|
locations->albedoTextureUnit = program->getTextures().findLocation("albedoMap");
|
||||||
locations->roughnessTextureUnit = program->getTextures().findLocation("roughnessMap");
|
locations->roughnessTextureUnit = program->getTextures().findLocation("roughnessMap");
|
||||||
locations->normalTextureUnit = program->getTextures().findLocation("normalMap");
|
locations->normalTextureUnit = program->getTextures().findLocation("normalMap");
|
||||||
|
|
|
@ -22,13 +22,13 @@ namespace render {
|
||||||
class ShapeKey {
|
class ShapeKey {
|
||||||
public:
|
public:
|
||||||
enum FlagBit {
|
enum FlagBit {
|
||||||
TRANSLUCENT = 0,
|
MATERIAL = 0,
|
||||||
|
TRANSLUCENT,
|
||||||
LIGHTMAP,
|
LIGHTMAP,
|
||||||
TANGENTS,
|
TANGENTS,
|
||||||
SPECULAR,
|
SPECULAR,
|
||||||
UNLIT,
|
UNLIT,
|
||||||
SKINNED,
|
SKINNED,
|
||||||
STEREO,
|
|
||||||
DEPTH_ONLY,
|
DEPTH_ONLY,
|
||||||
DEPTH_BIAS,
|
DEPTH_BIAS,
|
||||||
WIREFRAME,
|
WIREFRAME,
|
||||||
|
@ -53,13 +53,13 @@ public:
|
||||||
|
|
||||||
ShapeKey build() const { return ShapeKey{_flags}; }
|
ShapeKey build() const { return ShapeKey{_flags}; }
|
||||||
|
|
||||||
|
Builder& withMaterial() { _flags.set(MATERIAL); return (*this); }
|
||||||
Builder& withTranslucent() { _flags.set(TRANSLUCENT); return (*this); }
|
Builder& withTranslucent() { _flags.set(TRANSLUCENT); return (*this); }
|
||||||
Builder& withLightmap() { _flags.set(LIGHTMAP); return (*this); }
|
Builder& withLightmap() { _flags.set(LIGHTMAP); return (*this); }
|
||||||
Builder& withTangents() { _flags.set(TANGENTS); return (*this); }
|
Builder& withTangents() { _flags.set(TANGENTS); return (*this); }
|
||||||
Builder& withSpecular() { _flags.set(SPECULAR); return (*this); }
|
Builder& withSpecular() { _flags.set(SPECULAR); return (*this); }
|
||||||
Builder& withUnlit() { _flags.set(UNLIT); return (*this); }
|
Builder& withUnlit() { _flags.set(UNLIT); return (*this); }
|
||||||
Builder& withSkinned() { _flags.set(SKINNED); return (*this); }
|
Builder& withSkinned() { _flags.set(SKINNED); return (*this); }
|
||||||
Builder& withStereo() { _flags.set(STEREO); return (*this); }
|
|
||||||
Builder& withDepthOnly() { _flags.set(DEPTH_ONLY); return (*this); }
|
Builder& withDepthOnly() { _flags.set(DEPTH_ONLY); return (*this); }
|
||||||
Builder& withDepthBias() { _flags.set(DEPTH_BIAS); return (*this); }
|
Builder& withDepthBias() { _flags.set(DEPTH_BIAS); return (*this); }
|
||||||
Builder& withWireframe() { _flags.set(WIREFRAME); return (*this); }
|
Builder& withWireframe() { _flags.set(WIREFRAME); return (*this); }
|
||||||
|
@ -89,6 +89,9 @@ public:
|
||||||
|
|
||||||
Filter build() const { return Filter(_flags, _mask); }
|
Filter build() const { return Filter(_flags, _mask); }
|
||||||
|
|
||||||
|
Builder& withMaterial() { _flags.set(MATERIAL); _mask.set(MATERIAL); return (*this); }
|
||||||
|
Builder& withoutMaterial() { _flags.reset(MATERIAL); _mask.set(MATERIAL); return (*this); }
|
||||||
|
|
||||||
Builder& withTranslucent() { _flags.set(TRANSLUCENT); _mask.set(TRANSLUCENT); return (*this); }
|
Builder& withTranslucent() { _flags.set(TRANSLUCENT); _mask.set(TRANSLUCENT); return (*this); }
|
||||||
Builder& withOpaque() { _flags.reset(TRANSLUCENT); _mask.set(TRANSLUCENT); return (*this); }
|
Builder& withOpaque() { _flags.reset(TRANSLUCENT); _mask.set(TRANSLUCENT); return (*this); }
|
||||||
|
|
||||||
|
@ -107,9 +110,6 @@ public:
|
||||||
Builder& withSkinned() { _flags.set(SKINNED); _mask.set(SKINNED); return (*this); }
|
Builder& withSkinned() { _flags.set(SKINNED); _mask.set(SKINNED); return (*this); }
|
||||||
Builder& withoutSkinned() { _flags.reset(SKINNED); _mask.set(SKINNED); return (*this); }
|
Builder& withoutSkinned() { _flags.reset(SKINNED); _mask.set(SKINNED); return (*this); }
|
||||||
|
|
||||||
Builder& withStereo() { _flags.set(STEREO); _mask.set(STEREO); return (*this); }
|
|
||||||
Builder& withoutStereo() { _flags.reset(STEREO); _mask.set(STEREO); return (*this); }
|
|
||||||
|
|
||||||
Builder& withDepthOnly() { _flags.set(DEPTH_ONLY); _mask.set(DEPTH_ONLY); return (*this); }
|
Builder& withDepthOnly() { _flags.set(DEPTH_ONLY); _mask.set(DEPTH_ONLY); return (*this); }
|
||||||
Builder& withoutDepthOnly() { _flags.reset(DEPTH_ONLY); _mask.set(DEPTH_ONLY); return (*this); }
|
Builder& withoutDepthOnly() { _flags.reset(DEPTH_ONLY); _mask.set(DEPTH_ONLY); return (*this); }
|
||||||
|
|
||||||
|
@ -128,19 +128,20 @@ public:
|
||||||
Flags _mask{0};
|
Flags _mask{0};
|
||||||
};
|
};
|
||||||
Filter(const Filter::Builder& builder) : Filter(builder._flags, builder._mask) {}
|
Filter(const Filter::Builder& builder) : Filter(builder._flags, builder._mask) {}
|
||||||
|
ShapeKey key() const { return ShapeKey(_flags); }
|
||||||
protected:
|
protected:
|
||||||
friend class ShapePlumber;
|
friend class ShapePlumber;
|
||||||
Flags _flags{0};
|
Flags _flags{0};
|
||||||
Flags _mask{0};
|
Flags _mask{0};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bool useMaterial() const { return _flags[MATERIAL]; }
|
||||||
bool hasLightmap() const { return _flags[LIGHTMAP]; }
|
bool hasLightmap() const { return _flags[LIGHTMAP]; }
|
||||||
bool hasTangents() const { return _flags[TANGENTS]; }
|
bool hasTangents() const { return _flags[TANGENTS]; }
|
||||||
bool hasSpecular() const { return _flags[SPECULAR]; }
|
bool hasSpecular() const { return _flags[SPECULAR]; }
|
||||||
bool isUnlit() const { return _flags[UNLIT]; }
|
bool isUnlit() const { return _flags[UNLIT]; }
|
||||||
bool isTranslucent() const { return _flags[TRANSLUCENT]; }
|
bool isTranslucent() const { return _flags[TRANSLUCENT]; }
|
||||||
bool isSkinned() const { return _flags[SKINNED]; }
|
bool isSkinned() const { return _flags[SKINNED]; }
|
||||||
bool isStereo() const { return _flags[STEREO]; }
|
|
||||||
bool isDepthOnly() const { return _flags[DEPTH_ONLY]; }
|
bool isDepthOnly() const { return _flags[DEPTH_ONLY]; }
|
||||||
bool isDepthBiased() const { return _flags[DEPTH_BIAS]; }
|
bool isDepthBiased() const { return _flags[DEPTH_BIAS]; }
|
||||||
bool isWireFrame() const { return _flags[WIREFRAME]; }
|
bool isWireFrame() const { return _flags[WIREFRAME]; }
|
||||||
|
@ -170,13 +171,13 @@ inline QDebug operator<<(QDebug debug, const ShapeKey& key) {
|
||||||
debug << "[ShapeKey: OWN_PIPELINE]";
|
debug << "[ShapeKey: OWN_PIPELINE]";
|
||||||
} else {
|
} else {
|
||||||
debug << "[ShapeKey:"
|
debug << "[ShapeKey:"
|
||||||
|
<< "useMaterial:" << key.useMaterial()
|
||||||
<< "hasLightmap:" << key.hasLightmap()
|
<< "hasLightmap:" << key.hasLightmap()
|
||||||
<< "hasTangents:" << key.hasTangents()
|
<< "hasTangents:" << key.hasTangents()
|
||||||
<< "hasSpecular:" << key.hasSpecular()
|
<< "hasSpecular:" << key.hasSpecular()
|
||||||
<< "isUnlit:" << key.isUnlit()
|
<< "isUnlit:" << key.isUnlit()
|
||||||
<< "isTranslucent:" << key.isTranslucent()
|
<< "isTranslucent:" << key.isTranslucent()
|
||||||
<< "isSkinned:" << key.isSkinned()
|
<< "isSkinned:" << key.isSkinned()
|
||||||
<< "isStereo:" << key.isStereo()
|
|
||||||
<< "isDepthOnly:" << key.isDepthOnly()
|
<< "isDepthOnly:" << key.isDepthOnly()
|
||||||
<< "isDepthBiased:" << key.isDepthBiased()
|
<< "isDepthBiased:" << key.isDepthBiased()
|
||||||
<< "isWireFrame:" << key.isWireFrame()
|
<< "isWireFrame:" << key.isWireFrame()
|
||||||
|
@ -213,8 +214,6 @@ public:
|
||||||
OCCLUSION,
|
OCCLUSION,
|
||||||
SCATTERING,
|
SCATTERING,
|
||||||
LIGHT_AMBIENT,
|
LIGHT_AMBIENT,
|
||||||
|
|
||||||
NORMAL_FITTING = 10,
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -226,7 +225,6 @@ public:
|
||||||
int metallicTextureUnit;
|
int metallicTextureUnit;
|
||||||
int emissiveTextureUnit;
|
int emissiveTextureUnit;
|
||||||
int occlusionTextureUnit;
|
int occlusionTextureUnit;
|
||||||
int normalFittingMapUnit;
|
|
||||||
int lightingModelBufferUnit;
|
int lightingModelBufferUnit;
|
||||||
int skinClusterBufferUnit;
|
int skinClusterBufferUnit;
|
||||||
int materialBufferUnit;
|
int materialBufferUnit;
|
||||||
|
|
|
@ -159,13 +159,33 @@ Column {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Column {
|
||||||
id: metas
|
id: metas
|
||||||
CheckBox {
|
CheckBox {
|
||||||
text: "Draw Meta Bounds"
|
text: "Metas"
|
||||||
checked: Render.getConfig("DrawMetaBounds")["enabled"]
|
checked: Render.getConfig("DrawMetaBounds")["enabled"]
|
||||||
onCheckedChanged: { Render.getConfig("DrawMetaBounds")["enabled"] = checked }
|
onCheckedChanged: { Render.getConfig("DrawMetaBounds")["enabled"] = checked }
|
||||||
}
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: "Opaques"
|
||||||
|
checked: Render.getConfig("DrawOpaqueBounds")["enabled"]
|
||||||
|
onCheckedChanged: { Render.getConfig("DrawOpaqueBounds")["enabled"] = checked }
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: "Transparents"
|
||||||
|
checked: Render.getConfig("DrawTransparentBounds")["enabled"]
|
||||||
|
onCheckedChanged: { Render.getConfig("DrawTransparentBounds")["enabled"] = checked }
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: "Overlay Opaques"
|
||||||
|
checked: Render.getConfig("DrawOverlayOpaqueBounds")["enabled"]
|
||||||
|
onCheckedChanged: { Render.getConfig("DrawOverlayOpaqueBounds")["enabled"] = checked }
|
||||||
|
}
|
||||||
|
CheckBox {
|
||||||
|
text: "Overlay Transparents"
|
||||||
|
checked: Render.getConfig("DrawOverlayTransparentBounds")["enabled"]
|
||||||
|
onCheckedChanged: { Render.getConfig("DrawOverlayTransparentBounds")["enabled"] = checked }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
BIN
scripts/system/assets/sounds/entitySnap.wav
Normal file
BIN
scripts/system/assets/sounds/entitySnap.wav
Normal file
Binary file not shown.
151
scripts/tutorials/entity_scripts/magneticBlock.js
Normal file
151
scripts/tutorials/entity_scripts/magneticBlock.js
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
//
|
||||||
|
// magneticBlock.js
|
||||||
|
//
|
||||||
|
// Created by Matti Lahtinen 4/3/2017
|
||||||
|
// Copyright 2017 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
|
||||||
|
//
|
||||||
|
// Makes the entity the script is bound to connect to nearby, similarly sized entities, like a magnet.
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var SNAPSOUND_SOURCE = SoundCache.getSound(Script.resolvePath("../../system/assets/sounds/entitySnap.wav?xrs"));
|
||||||
|
var RANGE_MULTIPLER = 1.5;
|
||||||
|
var MAX_SCALE = 2;
|
||||||
|
var MIN_SCALE = 0.5;
|
||||||
|
|
||||||
|
// Helper for detecting nearby objects near entityProperties, with the scale calculated by the dimensions of the object.
|
||||||
|
function findEntitiesInRange(entityProperties) {
|
||||||
|
var dimensions = entityProperties.dimensions;
|
||||||
|
// Average of the dimensions instead of full value.
|
||||||
|
return Entities.findEntities(entityProperties.position,
|
||||||
|
((dimensions.x + dimensions.y + dimensions.z) / 3) * RANGE_MULTIPLER);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getNearestValidEntityProperties(releasedProperties) {
|
||||||
|
var entities = findEntitiesInRange(releasedProperties);
|
||||||
|
var nearestEntity = null;
|
||||||
|
var nearest = Number.MAX_VALUE - 1;
|
||||||
|
var releaseSize = Vec3.length(releasedProperties.dimensions);
|
||||||
|
entities.forEach(function(entityId) {
|
||||||
|
if (entityId !== releasedProperties.id) {
|
||||||
|
var entity = Entities.getEntityProperties(entityId, ['position', 'rotation', 'dimensions']);
|
||||||
|
var distance = Vec3.distance(releasedProperties.position, entity.position);
|
||||||
|
var scale = releaseSize / Vec3.length(entity.dimensions);
|
||||||
|
|
||||||
|
if (distance < nearest && (scale >= MIN_SCALE && scale <= MAX_SCALE)) {
|
||||||
|
nearestEntity = entity;
|
||||||
|
nearest = distance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return nearestEntity;
|
||||||
|
}
|
||||||
|
// Create the 'class'
|
||||||
|
function MagneticBlock() {}
|
||||||
|
// Bind pre-emptive events
|
||||||
|
MagneticBlock.prototype = {
|
||||||
|
/*
|
||||||
|
When script is bound to an entity, preload is the first callback called with the entityID.
|
||||||
|
It will behave as the constructor
|
||||||
|
*/
|
||||||
|
preload: function(id) {
|
||||||
|
/*
|
||||||
|
We will now override any existing userdata with the grabbable property.
|
||||||
|
Only retrieving userData
|
||||||
|
*/
|
||||||
|
var entityProperties = Entities.getEntityProperties(id, ['userData']);
|
||||||
|
var userData = {
|
||||||
|
grabbableKey: {}
|
||||||
|
};
|
||||||
|
// Check if existing userData field exists.
|
||||||
|
if (entityProperties.userData && entityProperties.userData.length > 0) {
|
||||||
|
try {
|
||||||
|
userData = JSON.parse(entityProperties.userData);
|
||||||
|
if (!userData.grabbableKey) {
|
||||||
|
userData.grabbableKey = {}; // If by random change there is no grabbableKey in the userData.
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// if user data is not valid json, we will simply overwrite it.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Object must be triggerable inorder to bind releaseGrabEvent
|
||||||
|
userData.grabbableKey.grabbable = true;
|
||||||
|
|
||||||
|
// Apply the new properties to entity of id
|
||||||
|
Entities.editEntity(id, {
|
||||||
|
userData: JSON.stringify(userData)
|
||||||
|
});
|
||||||
|
Script.scriptEnding.connect(function() {
|
||||||
|
Script.removeEventHandler(id, "releaseGrab", this.releaseGrab);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
releaseGrab: function(entityId) {
|
||||||
|
// Release grab is called with entityId,
|
||||||
|
var released = Entities.getEntityProperties(entityId, ["position", "rotation", "dimensions"]);
|
||||||
|
var target = getNearestValidEntityProperties(released);
|
||||||
|
if (target !== null) {
|
||||||
|
// We found nearest, now lets do the snap calculations
|
||||||
|
// Plays the snap sound between the two objects.
|
||||||
|
Audio.playSound(SNAPSOUND_SOURCE, {
|
||||||
|
volume: 1,
|
||||||
|
position: Vec3.mix(target.position, released.position, 0.5)
|
||||||
|
});
|
||||||
|
// Check Nearest Axis
|
||||||
|
var difference = Vec3.subtract(released.position, target.position);
|
||||||
|
var relativeDifference = Vec3.multiplyQbyV(Quat.inverse(target.rotation), difference);
|
||||||
|
|
||||||
|
var abs = {
|
||||||
|
x: Math.abs(relativeDifference.x),
|
||||||
|
y: Math.abs(relativeDifference.y),
|
||||||
|
z: Math.abs(relativeDifference.z)
|
||||||
|
};
|
||||||
|
// Check what value is greater. and lock down to that axis.
|
||||||
|
var newRelative = {
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
z: 0
|
||||||
|
};
|
||||||
|
if (abs.x >= abs.y && abs.x >= abs.z) {
|
||||||
|
newRelative.x = target.dimensions.x / 2 + released.dimensions.x / 2;
|
||||||
|
if (relativeDifference.x < 0) {
|
||||||
|
newRelative.x = -newRelative.x;
|
||||||
|
}
|
||||||
|
} else if (abs.y >= abs.x && abs.y >= abs.z) {
|
||||||
|
newRelative.y = target.dimensions.y / 2 + released.dimensions.y / 2;
|
||||||
|
if (relativeDifference.y < 0) {
|
||||||
|
newRelative.y = -newRelative.y;
|
||||||
|
}
|
||||||
|
} else if (abs.z >= abs.x && abs.z >= abs.y) {
|
||||||
|
newRelative.z = target.dimensions.z / 2 + released.dimensions.z / 2;
|
||||||
|
if (relativeDifference.z < 0) {
|
||||||
|
newRelative.z = -newRelative.z;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Can be expanded upon to work in nearest 90 degree rotation as well, but was not in spec.
|
||||||
|
var newPosition = Vec3.multiplyQbyV(target.rotation, newRelative);
|
||||||
|
Entities.editEntity(entityId, {
|
||||||
|
// Script relies on the registrationPoint being at the very center of the object. Thus override.
|
||||||
|
registrationPoint: {
|
||||||
|
x: 0.5,
|
||||||
|
y: 0.5,
|
||||||
|
z: 0.5
|
||||||
|
},
|
||||||
|
rotation: target.rotation,
|
||||||
|
position: Vec3.sum(target.position, newPosition)
|
||||||
|
});
|
||||||
|
// Script relies on the registrationPoint being at the very center of the object. Thus override.
|
||||||
|
Entities.editEntity(target.id, {
|
||||||
|
registrationPoint: {
|
||||||
|
x: 0.5,
|
||||||
|
y: 0.5,
|
||||||
|
z: 0.5
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return new MagneticBlock();
|
||||||
|
});
|
72
scripts/tutorials/makeBlocks.js
Normal file
72
scripts/tutorials/makeBlocks.js
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
//
|
||||||
|
// makeBlocks.js
|
||||||
|
//
|
||||||
|
// Created by Matti Lahtinen 4/3/2017
|
||||||
|
// Copyright 2017 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
|
||||||
|
//
|
||||||
|
// Creates multiple "magnetic" blocks with random colors that users clones of and snap together.
|
||||||
|
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var MAX_RGB_COMPONENT_VALUE = 256 / 2; // Limit the values to half the maximum.
|
||||||
|
var MIN_COLOR_VALUE = 127;
|
||||||
|
var SIZE = 0.3;
|
||||||
|
var LIFETIME = 600;
|
||||||
|
var VERTICAL_OFFSET = -0.25;
|
||||||
|
var ROWS = 3;
|
||||||
|
var COLUMNS = 3;
|
||||||
|
// Random Pastel Generator based on Piper's script
|
||||||
|
function newColor() {
|
||||||
|
return {
|
||||||
|
red: randomPastelRGBComponent(),
|
||||||
|
green: randomPastelRGBComponent(),
|
||||||
|
blue: randomPastelRGBComponent()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
// Helper functions.
|
||||||
|
function randomPastelRGBComponent() {
|
||||||
|
return Math.floor(Math.random() * MAX_RGB_COMPONENT_VALUE) + MIN_COLOR_VALUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
var SCRIPT_URL = Script.resolvePath("./entity_scripts/magneticBlock.js");
|
||||||
|
|
||||||
|
var frontVector = Quat.getFront(MyAvatar.orientation);
|
||||||
|
frontVector.y += VERTICAL_OFFSET;
|
||||||
|
for (var x = 0; x < COLUMNS; x++) {
|
||||||
|
for (var y = 0; y < ROWS; y++) {
|
||||||
|
|
||||||
|
var frontOffset = {
|
||||||
|
x: 0,
|
||||||
|
y: SIZE * y + SIZE,
|
||||||
|
z: SIZE * x + SIZE
|
||||||
|
};
|
||||||
|
|
||||||
|
Entities.addEntity({
|
||||||
|
type: "Box",
|
||||||
|
name: "MagneticBlock-" + y + '-' + x,
|
||||||
|
dimensions: {
|
||||||
|
x: SIZE,
|
||||||
|
y: SIZE,
|
||||||
|
z: SIZE
|
||||||
|
},
|
||||||
|
userData: JSON.stringify({
|
||||||
|
grabbableKey: {
|
||||||
|
cloneable: true,
|
||||||
|
grabbable: true,
|
||||||
|
cloneLifetime: LIFETIME,
|
||||||
|
cloneLimit: 9999
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
position: Vec3.sum(MyAvatar.position, Vec3.sum(frontOffset, frontVector)),
|
||||||
|
color: newColor(),
|
||||||
|
script: SCRIPT_URL
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Script.stop();
|
||||||
|
})();
|
Loading…
Reference in a new issue