Пример #1
0
        /// <summary>
        /// Collects all unit seat mappings from a cache file and adds them to a context collection.
        /// </summary>
        /// <param name="reader">The stream to read from.</param>
        /// <param name="cache">The cache file.</param>
        /// <param name="buildInfo">The build information for this cache file.</param>
        /// <param name="block">The cache file's unit seat mappings block.</param>
        /// <param name="collection">The context collection.</param>
        private static void HandleUnitSeatMappings(IReader reader, ICacheFile cache, EngineDescription buildInfo,
                                                   KeyValuePair <string, StructureValueCollection[]> block, ScriptingContextCollection collection)
        {
            MappingInformation[] information = new MappingInformation[block.Value.Length];

            // Collect information for all unti seat mappings in scnr.
            for (short mappingIndex = 0; mappingIndex < block.Value.Length; mappingIndex++)
            {
                var        values       = block.Value[mappingIndex];
                ITag       unit         = values.GetTagReference("Unit");
                int        seatIndeces1 = (int)values.GetInteger("Seats 1");
                int        seatIndeces2 = (int)values.GetInteger("Seats 2");
                List <int> seatIndices  = GetSeatIndices(seatIndeces1, seatIndeces2);
                var        vehiLayout   = buildInfo.Layouts.GetLayout("vehi_seats");

                // Read the vehicle meta data from the cache file.
                reader.SeekTo(unit.MetaLocation.AsOffset());
                var vehiValues = CacheStructureReader.ReadStructure(reader, cache, buildInfo, vehiLayout);
                var seatsBlock = vehiValues.GetTagBlock("seats");

                // Guess the name of each mapping entry in scnr.
                string name = GetVehicleMappingName(seatsBlock, seatIndices);

                // Add the information to the array.
                information[mappingIndex] = new MappingInformation
                {
                    Index       = mappingIndex,
                    Name        = name,
                    SplitName   = name.Split('_'),
                    TagName     = cache.FileNames.GetTagName(unit),
                    SeatIndices = seatIndices
                };
            }

            // Identify and create seat mappings. Mappings will be grouped in this step.
            IEnumerable <UnitSeatMapping> mappings;

            if (buildInfo.Name.Contains("Halo 3"))
            {
                mappings = CreateUnitSeatMappings(information, PostProcessing.Halo3);
            }
            else
            {
                mappings = CreateUnitSeatMappings(information, PostProcessing.HaloReach);
            }

            // Add the final unit seat mapping objects to the result.
            foreach (var mapping in mappings)
            {
                collection.AddUnitSeatMapping(mapping);
            }
        }
Пример #2
0
        /// <summary>
        /// Generates the scripting context for a cache file.
        /// </summary>
        /// <param name="reader">The stream to read from.</param>
        /// <param name="cache">The cache filr.</param>
        /// <param name="buildinfo">The cache file's build information.</param>
        /// <returns>Returns a <see cref="ScriptingContextCollection"/>.</returns>
        public static ScriptingContextCollection GenerateContext(IReader reader, ICacheFile cache, EngineDescription buildinfo)
        {
            var result  = new ScriptingContextCollection();
            var scnrTag = cache.Tags.FindTagByGroup("scnr");
            var mdlgTag = cache.Tags.FindTagByGroup("mdlg");

            if (scnrTag != null && buildinfo.Layouts.HasLayout("scnr_script_context"))
            {
                var scnrLayout = buildinfo.Layouts.GetLayout("scnr_script_context");
                reader.SeekTo(scnrTag.MetaLocation.AsOffset());
                var scnrValues = CacheStructureReader.ReadStructure(reader, cache, buildinfo, scnrLayout);
                FillContextCollection(reader, cache, buildinfo, scnrValues, result);
            }

            if (mdlgTag != null && buildinfo.Layouts.HasLayout("mdlg_script_context"))
            {
                var mdlgLayout = buildinfo.Layouts.GetLayout("mdlg_script_context");
                reader.SeekTo(mdlgTag.MetaLocation.AsOffset());
                var mdlgValues = CacheStructureReader.ReadStructure(reader, cache, buildinfo, mdlgLayout);
                FillContextCollection(reader, cache, buildinfo, mdlgValues, result);
            }

            return(result);
        }