Ejemplo n.º 1
0
        internal static W3dSphere Parse(BinaryReader reader, W3dParseContext context)
        {
            return(ParseChunk(reader, context, header =>
            {
                var result = new W3dSphere
                {
                    Header = W3dSphereHeader.Parse(reader)
                };

                result.Shader = (W3dRingShaderFunc)(reader.ReadUInt32() >> 24);
                result.UnknownFlag = (reader.ReadUInt32() >> 24);  // TODO: Determine What this Flag is/does.

                result.Placeholder = W3dSpherePlaceholder.Parse(reader);
                result.Colors = W3dSphereColors.Parse(reader);
                result.OpacityInfo = W3dSphereOpacityInfo.Parse(reader);
                result.ScaleKeyFrames = W3dSphereScaleKeyFrames.Parse(reader);
                result.AlphaVectors = W3dSphereAlphaVectors.Parse(reader);

                return result;
            }));
        }
Ejemplo n.º 2
0
        internal static W3dSphereScaleKeyFrames Parse(BinaryReader reader)
        {
            var result = new W3dSphereScaleKeyFrames
            {
                ChunkType      = reader.ReadUInt32(),
                ChunkSize      = reader.ReadUInt32() & 0x7FFFFFFF,
                Version        = reader.ReadUInt32(),
                ScaleKeyFrames = new List <W3dSphereScaleKeyFrame>()
            };

            var arraySize = reader.ReadUInt32();

            var arrayCount = arraySize / 18; // 18 = Size of OpacityInfo Array Chunk + Header Info

            for (var i = 0; i < arrayCount; i++)
            {
                var keyFrame = W3dSphereScaleKeyFrame.Parse(reader);
                result.ScaleKeyFrames.Add(keyFrame);
            }

            return(result);
        }