Skip to content
Snippets Groups Projects
Commit f9a5cdba authored by Don Kjer's avatar Don Kjer
Browse files

Started stubbing out llsd support for tex layer information.

parent 3db6e3d9
No related branches found
No related tags found
No related merge requests found
...@@ -1254,9 +1254,9 @@ ...@@ -1254,9 +1254,9 @@
<key>archive</key> <key>archive</key>
<map> <map>
<key>hash</key> <key>hash</key>
<string>02c3a65194635b57a5fff05ff47e62e5</string> <string>84dae3ea3825fa0584ef3de78bcc1632</string>
<key>url</key> <key>url</key>
<string>http://s3-proxy.lindenlab.com/private-builds-secondlife-com/hg/repo/llappearanceutility-source/rev/265256/arch/Linux/installer/llappearanceutility_source-0.1-linux-20120927.tar.bz2</string> <string>http://s3-proxy.lindenlab.com/private-builds-secondlife-com/hg/repo/llappearanceutility-source/rev/265271/arch/Linux/installer/llappearanceutility_source-0.1-linux-20120928.tar.bz2</string>
</map> </map>
<key>name</key> <key>name</key>
<string>linux</string> <string>linux</string>
......
...@@ -469,6 +469,31 @@ const std::string LLTexLayerSet::getBodyRegionName() const ...@@ -469,6 +469,31 @@ const std::string LLTexLayerSet::getBodyRegionName() const
} }
// virtual
void LLTexLayerSet::asLLSD(LLSD& sd) const
{
sd["visible"] = LLSD::Boolean(isVisible());
LLSD layer_list_sd;
layer_list_t::const_iterator layer_iter = mLayerList.begin();
layer_list_t::const_iterator layer_end = mLayerList.end();
for(; layer_iter != layer_end; ++layer_iter);
{
LLSD layer_sd;
//LLTexLayerInterface* layer = (*layer_iter);
//if (layer)
//{
// layer->asLLSD(layer_sd);
//}
layer_list_sd.append(layer_sd);
}
LLSD mask_list_sd;
LLSD info_sd;
sd["layers"] = layer_list_sd;
sd["masks"] = mask_list_sd;
sd["info"] = info_sd;
}
void LLTexLayerSet::destroyComposite() void LLTexLayerSet::destroyComposite()
{ {
if( mComposite ) if( mComposite )
...@@ -966,6 +991,12 @@ LLTexLayer::~LLTexLayer() ...@@ -966,6 +991,12 @@ LLTexLayer::~LLTexLayer()
} }
void LLTexLayer::asLLSD(LLSD& sd) const
{
// *TODO: Finish
sd["id"] = getUUID();
}
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// setInfo // setInfo
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
......
...@@ -89,6 +89,8 @@ class LLTexLayerInterface ...@@ -89,6 +89,8 @@ class LLTexLayerInterface
ERenderPass getRenderPass() const; ERenderPass getRenderPass() const;
BOOL isVisibilityMask() const; BOOL isVisibilityMask() const;
virtual void asLLSD(LLSD& sd) const {}
protected: protected:
const std::string& getGlobalColor() const; const std::string& getGlobalColor() const;
LLViewerVisualParam* getVisualParamPtr(S32 index) const; LLViewerVisualParam* getVisualParamPtr(S32 index) const;
...@@ -163,10 +165,11 @@ class LLTexLayer : public LLTexLayerInterface ...@@ -163,10 +165,11 @@ class LLTexLayer : public LLTexLayerInterface
void setLTO(LLLocalTextureObject *lto) { mLocalTextureObject = lto; } void setLTO(LLLocalTextureObject *lto) { mLocalTextureObject = lto; }
LLLocalTextureObject* getLTO() { return mLocalTextureObject; } LLLocalTextureObject* getLTO() { return mLocalTextureObject; }
/*virtual*/ void asLLSD(LLSD& sd) const;
static void calculateTexLayerColor(const param_color_list_t &param_list, LLColor4 &net_color); static void calculateTexLayerColor(const param_color_list_t &param_list, LLColor4 &net_color);
protected: protected:
LLUUID getUUID() const; LLUUID getUUID() const;
private:
typedef std::map<U32, U8*> alpha_cache_t; typedef std::map<U32, U8*> alpha_cache_t;
alpha_cache_t mAlphaCache; alpha_cache_t mAlphaCache;
LLLocalTextureObject* mLocalTextureObject; LLLocalTextureObject* mLocalTextureObject;
...@@ -214,6 +217,8 @@ class LLTexLayerSet ...@@ -214,6 +217,8 @@ class LLTexLayerSet
static BOOL sHasCaches; static BOOL sHasCaches;
virtual void asLLSD(LLSD& sd) const;
protected: protected:
typedef std::vector<LLTexLayerInterface *> layer_list_t; typedef std::vector<LLTexLayerInterface *> layer_list_t;
layer_list_t mLayerList; layer_list_t mLayerList;
......
...@@ -68,6 +68,7 @@ class LLWearable ...@@ -68,6 +68,7 @@ class LLWearable
LLAssetType::EType getAssetType() const; LLAssetType::EType getAssetType() const;
S32 getDefinitionVersion() const { return mDefinitionVersion; } S32 getDefinitionVersion() const { return mDefinitionVersion; }
void setDefinitionVersion( S32 new_version ) { mDefinitionVersion = new_version; } void setDefinitionVersion( S32 new_version ) { mDefinitionVersion = new_version; }
static S32 getCurrentDefinitionVersion() { return LLWearable::sCurrentDefinitionVersion; }
public: public:
typedef std::vector<LLVisualParam*> visual_param_vec_t; typedef std::vector<LLVisualParam*> visual_param_vec_t;
......
...@@ -95,7 +95,7 @@ class LLWearableData ...@@ -95,7 +95,7 @@ class LLWearableData
//-------------------------------------------------------------------- //--------------------------------------------------------------------
// Member variables // Member variables
//-------------------------------------------------------------------- //--------------------------------------------------------------------
private: protected:
LLAvatarAppearance* mAvatarAppearance; LLAvatarAppearance* mAvatarAppearance;
typedef std::vector<LLWearable*> wearableentry_vec_t; // all wearables of a certain type (EG all shirts) typedef std::vector<LLWearable*> wearableentry_vec_t; // all wearables of a certain type (EG all shirts)
typedef std::map<LLWearableType::EType, wearableentry_vec_t> wearableentry_map_t; // wearable "categories" arranged by wearable type typedef std::map<LLWearableType::EType, wearableentry_vec_t> wearableentry_map_t; // wearable "categories" arranged by wearable type
......
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