TagTool.Cache.ResourceReference.DisableChecksum C# (CSharp) Method

DisableChecksum() public method

Disables the resource's checksum by changing its location flags.
public DisableChecksum ( ) : void
return void
        public void DisableChecksum()
        {
            OldLocationFlags &= ~(OldResourceLocationFlags.UseChecksum | OldResourceLocationFlags.UseChecksum2);
            NewLocationFlags &= ~NewResourceLocationFlags.UseChecksum;
        }

Usage Example

Example #1
0
        /// <summary>
        /// Adds a new resource to a cache.
        /// </summary>
        /// <param name="resource">The resource reference to initialize.</param>
        /// <param name="location">The location where the resource should be stored.</param>
        /// <param name="dataStream">The stream to read the resource data from.</param>
        /// <exception cref="System.ArgumentNullException">resource</exception>
        /// <exception cref="System.ArgumentException">The input stream is not open for reading;dataStream</exception>
        public void Add(ResourceReference resource, ResourceLocation location, Stream dataStream)
        {
            if (resource == null)
            {
                throw new ArgumentNullException("resource");
            }
            if (!dataStream.CanRead)
            {
                throw new ArgumentException("The input stream is not open for reading", "dataStream");
            }

            resource.ChangeLocation(location);
            var cache = GetCache(resource);

            using (var stream = cache.File.Open(FileMode.Open, FileAccess.ReadWrite))
            {
                var dataSize = (int)(dataStream.Length - dataStream.Position);
                var data     = new byte[dataSize];
                dataStream.Read(data, 0, dataSize);
                uint compressedSize;
                resource.Index            = cache.Cache.Add(stream, data, out compressedSize);
                resource.CompressedSize   = compressedSize;
                resource.DecompressedSize = (uint)dataSize;
                resource.DisableChecksum();
            }
        }
All Usage Examples Of TagTool.Cache.ResourceReference::DisableChecksum