Skip to content
Snippets Groups Projects
Commit 6a92695d authored by Darl Cat's avatar Darl Cat
Browse files

Add user_settings colorlut loading for lightbox floater

parent 23c14b27
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -53,9 +53,10 @@ ALFloaterLightBox::~ALFloaterLightBox() ...@@ -53,9 +53,10 @@ ALFloaterLightBox::~ALFloaterLightBox()
BOOL ALFloaterLightBox::postBuild() BOOL ALFloaterLightBox::postBuild()
{ {
updateTonemapper(); updateTonemapper();
mTonemapConnection = gSavedSettings.getControl("RenderToneMapType")->getSignal()->connect([&](LLControlVariable* control, const LLSD&, const LLSD&){ updateTonemapper(); }); mTonemapConnection = gSavedSettings.getControl("RenderToneMapType")->getSignal()->connect([&](LLControlVariable* control, const LLSD&, const LLSD&){ updateTonemapper(); });
mCASConnection = gSavedSettings.getControl("RenderSharpenMethod")->getSignal()->connect([&](LLControlVariable* control, const LLSD&, const LLSD&){ updateCAS(); }); mCASConnection = gSavedSettings.getControl("RenderSharpenMethod")->getSignal()->connect([&](LLControlVariable* control, const LLSD&, const LLSD&){ updateCAS(); });
populateLUTCombo();
return TRUE; return TRUE;
} }
...@@ -65,6 +66,27 @@ void ALFloaterLightBox::draw() ...@@ -65,6 +66,27 @@ void ALFloaterLightBox::draw()
LLFloater::draw(); LLFloater::draw();
} }
void ALFloaterLightBox::populateLUTCombo()
{
LLComboBox* lut_combo = getChild<LLComboBox>("colorlut_combo");
const std::string& user_luts = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, "colorlut");
if(boost::filesystem::is_directory(user_luts))
{
if(!boost::filesystem::is_empty(user_luts))
{
lut_combo->addSeparator();
}
for (boost::filesystem::directory_entry& lut : boost::filesystem::directory_iterator(user_luts))
{
std::string lut_stem = lut.path().stem().string();
std::string lut_filename = lut.path().filename().string();
lut_combo->add(lut_stem, lut_filename);
}
lut_combo->selectByValue(gSavedSettings.getString("RenderColorGradeLUT"));
lut_combo->resetDirty();
}
}
void ALFloaterLightBox::onClickResetControlDefault(const LLSD& userdata) void ALFloaterLightBox::onClickResetControlDefault(const LLSD& userdata)
{ {
const std::string& control_name = userdata.asString(); const std::string& control_name = userdata.asString();
......
...@@ -50,6 +50,7 @@ class ALFloaterLightBox final : public LLFloater ...@@ -50,6 +50,7 @@ class ALFloaterLightBox final : public LLFloater
void onClickResetGroupDefault(const LLSD& userdata); void onClickResetGroupDefault(const LLSD& userdata);
void updateTonemapper(); void updateTonemapper();
void updateCAS(); void updateCAS();
void populateLUTCombo();
boost::signals2::scoped_connection mTonemapConnection; boost::signals2::scoped_connection mTonemapConnection;
boost::signals2::scoped_connection mCASConnection; boost::signals2::scoped_connection mCASConnection;
......
...@@ -471,6 +471,12 @@ bool ALRenderUtil::setupColorGrade() ...@@ -471,6 +471,12 @@ bool ALRenderUtil::setupColorGrade()
if (!lut_name.empty()) if (!lut_name.empty())
{ {
std::string lut_path = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, "colorlut", lut_name); std::string lut_path = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, "colorlut", lut_name);
if(!gDirUtilp->fileExists(lut_path))
{
lut_path = gDirUtilp->getExpandedFilename(LL_PATH_USER_SETTINGS, "colorlut", lut_name);
}
if (!lut_path.empty()) if (!lut_path.empty())
{ {
std::string temp_exten = gDirUtilp->getExtension(lut_path); std::string temp_exten = gDirUtilp->getExtension(lut_path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment