diff options
author | UbitUmarov | 2014-08-14 01:53:51 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-14 01:53:51 +0100 |
commit | a1cc218f10be109e6cca19f8e39d877243974984 (patch) | |
tree | f27a3b7e09912b55b90347a1e751ac4fbc79808c /OpenSim/Framework | |
parent | put back baked textures debug msgs at start of validatebaked... (diff) | |
download | opensim-SC-a1cc218f10be109e6cca19f8e39d877243974984.zip opensim-SC-a1cc218f10be109e6cca19f8e39d877243974984.tar.gz opensim-SC-a1cc218f10be109e6cca19f8e39d877243974984.tar.bz2 opensim-SC-a1cc218f10be109e6cca19f8e39d877243974984.tar.xz |
*DANGER* make baked textures cross and make use of it * UNTESTED *
issue: alll this seems to be sent back to childs, need to stop that
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/AvatarAppearance.cs | 17 | ||||
-rw-r--r-- | OpenSim/Framework/WearableCacheItem.cs | 60 |
2 files changed, 75 insertions, 2 deletions
diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index c384336..25ae0ec 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs | |||
@@ -183,7 +183,7 @@ namespace OpenSim.Framework | |||
183 | m_attachments = new Dictionary<int, List<AvatarAttachment>>(); | 183 | m_attachments = new Dictionary<int, List<AvatarAttachment>>(); |
184 | } | 184 | } |
185 | 185 | ||
186 | public AvatarAppearance(AvatarAppearance appearance) : this(appearance, true) | 186 | public AvatarAppearance(AvatarAppearance appearance): this(appearance, true) |
187 | { | 187 | { |
188 | } | 188 | } |
189 | 189 | ||
@@ -221,6 +221,8 @@ namespace OpenSim.Framework | |||
221 | { | 221 | { |
222 | byte[] tbytes = appearance.Texture.GetBytes(); | 222 | byte[] tbytes = appearance.Texture.GetBytes(); |
223 | m_texture = new Primitive.TextureEntry(tbytes,0,tbytes.Length); | 223 | m_texture = new Primitive.TextureEntry(tbytes,0,tbytes.Length); |
224 | if (appearance.m_cacheitems != null) | ||
225 | m_cacheitems = (WearableCacheItem[]) appearance.m_cacheitems.Clone(); | ||
224 | } | 226 | } |
225 | 227 | ||
226 | m_visualparams = null; | 228 | m_visualparams = null; |
@@ -723,6 +725,13 @@ namespace OpenSim.Framework | |||
723 | } | 725 | } |
724 | data["textures"] = textures; | 726 | data["textures"] = textures; |
725 | 727 | ||
728 | if (m_cacheitems != null) | ||
729 | { | ||
730 | OSDArray baked = WearableCacheItem.BakedToOSD(m_cacheitems); | ||
731 | if (baked != null) | ||
732 | data["bakedcache"] = baked; | ||
733 | } | ||
734 | |||
726 | // Visual Parameters | 735 | // Visual Parameters |
727 | OSDBinary visualparams = new OSDBinary(m_visualparams); | 736 | OSDBinary visualparams = new OSDBinary(m_visualparams); |
728 | data["visualparams"] = visualparams; | 737 | data["visualparams"] = visualparams; |
@@ -789,6 +798,12 @@ namespace OpenSim.Framework | |||
789 | m_log.Warn("[AVATAR APPEARANCE]: failed to unpack textures"); | 798 | m_log.Warn("[AVATAR APPEARANCE]: failed to unpack textures"); |
790 | } | 799 | } |
791 | 800 | ||
801 | if ((data != null) && (data["bakedcache"] != null) && (data["bakedcache"]).Type == OSDType.Array) | ||
802 | { | ||
803 | OSDArray bakedOSDArray = (OSDArray)(data["bakedcache"]); | ||
804 | m_cacheitems = WearableCacheItem.BakedFromOSD(bakedOSDArray); | ||
805 | } | ||
806 | |||
792 | // Visual Parameters | 807 | // Visual Parameters |
793 | SetDefaultParams(); | 808 | SetDefaultParams(); |
794 | if ((data != null) && (data["visualparams"] != null)) | 809 | if ((data != null) && (data["visualparams"] != null)) |
diff --git a/OpenSim/Framework/WearableCacheItem.cs b/OpenSim/Framework/WearableCacheItem.cs index a890d3b..f49697d 100644 --- a/OpenSim/Framework/WearableCacheItem.cs +++ b/OpenSim/Framework/WearableCacheItem.cs | |||
@@ -49,7 +49,6 @@ namespace OpenSim.Framework | |||
49 | retitems[i] = new WearableCacheItem() {CacheId = UUID.Zero, TextureID = UUID.Zero, TextureIndex = i}; | 49 | retitems[i] = new WearableCacheItem() {CacheId = UUID.Zero, TextureID = UUID.Zero, TextureIndex = i}; |
50 | return retitems; | 50 | return retitems; |
51 | } | 51 | } |
52 | |||
53 | 52 | ||
54 | public static WearableCacheItem[] FromOSD(OSD pInput, IImprovedAssetCache dataCache) | 53 | public static WearableCacheItem[] FromOSD(OSD pInput, IImprovedAssetCache dataCache) |
55 | { | 54 | { |
@@ -100,6 +99,7 @@ namespace OpenSim.Framework | |||
100 | return ret.ToArray(); | 99 | return ret.ToArray(); |
101 | 100 | ||
102 | } | 101 | } |
102 | |||
103 | public static OSD ToOSD(WearableCacheItem[] pcacheItems, IImprovedAssetCache dataCache) | 103 | public static OSD ToOSD(WearableCacheItem[] pcacheItems, IImprovedAssetCache dataCache) |
104 | { | 104 | { |
105 | OSDArray arr = new OSDArray(); | 105 | OSDArray arr = new OSDArray(); |
@@ -126,6 +126,64 @@ namespace OpenSim.Framework | |||
126 | } | 126 | } |
127 | return arr; | 127 | return arr; |
128 | } | 128 | } |
129 | |||
130 | public static OSDArray BakedToOSD(WearableCacheItem[] pcacheItems) | ||
131 | { | ||
132 | if (pcacheItems.Length < AvatarAppearance.BAKE_INDICES[AvatarAppearance.BAKE_INDICES.Length - 1]) | ||
133 | return null; | ||
134 | |||
135 | OSDArray arr = new OSDArray(); | ||
136 | |||
137 | for (int i = 0; i < AvatarAppearance.BAKE_INDICES.Length; i++) | ||
138 | { | ||
139 | int idx = AvatarAppearance.BAKE_INDICES[i]; | ||
140 | |||
141 | WearableCacheItem item = pcacheItems[idx]; | ||
142 | |||
143 | OSDMap itemmap = new OSDMap(); | ||
144 | itemmap.Add("textureindex", OSD.FromUInteger(item.TextureIndex)); | ||
145 | itemmap.Add("cacheid", OSD.FromUUID(item.CacheId)); | ||
146 | itemmap.Add("textureid", OSD.FromUUID(item.TextureID)); | ||
147 | if (item.TextureAsset != null) | ||
148 | { | ||
149 | itemmap.Add("assetdata", OSD.FromBinary(item.TextureAsset.Data)); | ||
150 | itemmap.Add("assetcreator", OSD.FromString(item.TextureAsset.CreatorID)); | ||
151 | itemmap.Add("assetname", OSD.FromString(item.TextureAsset.Name)); | ||
152 | } | ||
153 | arr.Add(itemmap); | ||
154 | } | ||
155 | return arr; | ||
156 | } | ||
157 | |||
158 | public static WearableCacheItem[] BakedFromOSD(OSD pInput) | ||
159 | { | ||
160 | WearableCacheItem[] pcache = WearableCacheItem.GetDefaultCacheItem(); | ||
161 | |||
162 | if (pInput.Type == OSDType.Array) | ||
163 | { | ||
164 | OSDArray itemarray = (OSDArray)pInput; | ||
165 | foreach (OSDMap item in itemarray) | ||
166 | { | ||
167 | int idx = (int)item["textureindex"].AsUInteger(); | ||
168 | if (idx < 0 || idx > pcache.Length) | ||
169 | continue; | ||
170 | pcache[idx].CacheId = item["cacheid"].AsUUID(); | ||
171 | pcache[idx].TextureID = item["textureid"].AsUUID(); | ||
172 | if (item.ContainsKey("assetdata")) | ||
173 | { | ||
174 | AssetBase asset = new AssetBase(item["textureid"].AsUUID(), "BakedTexture", (sbyte)AssetType.Texture, UUID.Zero.ToString()); | ||
175 | asset.Temporary = true; | ||
176 | asset.Local = true; | ||
177 | asset.Data = item["assetdata"].AsBinary(); | ||
178 | pcache[idx].TextureAsset = asset; | ||
179 | } | ||
180 | else | ||
181 | pcache[idx].TextureAsset = null; | ||
182 | } | ||
183 | } | ||
184 | return pcache; | ||
185 | } | ||
186 | |||
129 | public static WearableCacheItem SearchTextureIndex(uint pTextureIndex,WearableCacheItem[] pcacheItems) | 187 | public static WearableCacheItem SearchTextureIndex(uint pTextureIndex,WearableCacheItem[] pcacheItems) |
130 | { | 188 | { |
131 | for (int i = 0; i < pcacheItems.Length; i++) | 189 | for (int i = 0; i < pcacheItems.Length; i++) |