From 7486684436583a4d9a1b800833581b26e83b9c0b Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 7 Aug 2014 22:47:29 +0100 Subject: update the max number of texture faces and wearables to current values. This should be safe now.. --- OpenSim/Framework/AvatarAppearance.cs | 6 +++++- OpenSim/Framework/AvatarWearable.cs | 6 +++--- OpenSim/Framework/WearableCacheItem.cs | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) (limited to 'OpenSim') diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index a34c85f..40179a2 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs @@ -53,7 +53,11 @@ namespace OpenSim.Framework // should be only used as initial default value ( V1 viewers ) public readonly static int VISUALPARAM_COUNT = 218; - public readonly static int TEXTURE_COUNT = 21; +// public readonly static int TEXTURE_COUNT = 21 + // 21 bad, make it be updated as libovm gets update + // also keeping in sync with it + public readonly static int TEXTURE_COUNT = Primitive.TextureEntry.MAX_FACES; + public readonly static byte[] BAKE_INDICES = new byte[] { 8, 9, 10, 11, 19, 20 }; protected int m_serial = 0; diff --git a/OpenSim/Framework/AvatarWearable.cs b/OpenSim/Framework/AvatarWearable.cs index aee295a..b104325 100644 --- a/OpenSim/Framework/AvatarWearable.cs +++ b/OpenSim/Framework/AvatarWearable.cs @@ -67,10 +67,10 @@ namespace OpenSim.Framework public static readonly int ALPHA = 13; public static readonly int TATTOO = 14; -// public static readonly int PHYSICS = 15; + public static readonly int PHYSICS = 15; - // public static readonly int MAX_WEARABLES = 16; - public static readonly int MAX_WEARABLES = 15; + public static readonly int MAX_WEARABLES = 16; +// public static readonly int MAX_WEARABLES = 15; public static readonly UUID DEFAULT_BODY_ITEM = new UUID("66c41e39-38f9-f75a-024e-585989bfaba9"); public static readonly UUID DEFAULT_BODY_ASSET = new UUID("66c41e39-38f9-f75a-024e-585989bfab73"); diff --git a/OpenSim/Framework/WearableCacheItem.cs b/OpenSim/Framework/WearableCacheItem.cs index cde2862..a890d3b 100644 --- a/OpenSim/Framework/WearableCacheItem.cs +++ b/OpenSim/Framework/WearableCacheItem.cs @@ -43,12 +43,14 @@ namespace OpenSim.Framework public static WearableCacheItem[] GetDefaultCacheItem() { - int itemmax = 21; + int itemmax = AvatarAppearance.TEXTURE_COUNT; WearableCacheItem[] retitems = new WearableCacheItem[itemmax]; for (uint i=0;i ret = new List(); -- cgit v1.1