コード例 #1
0
        [Test] public void Basics()
        {
            RawList <int> intList = new RawList <int>();

            intList.Add(10);
            intList.AddRange(new int[] { 17, 42, 94 });

            Assert.AreEqual(4, intList.Count);
            Assert.IsTrue(intList.Contains(42));
            Assert.AreEqual(2, intList.IndexOf(42));
            CollectionAssert.AreEqual(new int[] { 10, 17, 42, 94 }, intList);
            CollectionAssert.AreEqual(new int[] { 10, 17, 42, 94 }, intList.Data.Take(4));

            intList.ShrinkToFit();
            Assert.AreEqual(intList.Count, intList.Capacity);

            intList.Remove(42);
            Assert.AreEqual(3, intList.Count);
            Assert.IsTrue(!intList.Contains(42));
            Assert.AreEqual(-1, intList.IndexOf(42));
            CollectionAssert.AreEqual(new int[] { 10, 17, 94 }, intList);
            CollectionAssert.AreEqual(new int[] { 10, 17, 94 }, intList.Data.Take(3));

            intList.Insert(1, 100);
            CollectionAssert.AreEqual(new int[] { 10, 100, 17, 94 }, intList);
            CollectionAssert.AreEqual(new int[] { 10, 100, 17, 94 }, intList.Data.Take(4));

            intList.InsertRange(2, new int[] { 150, 200, 250, 300 });
            CollectionAssert.AreEqual(new int[] { 10, 100, 150, 200, 250, 300, 17, 94 }, intList);
            CollectionAssert.AreEqual(new int[] { 10, 100, 150, 200, 250, 300, 17, 94 }, intList.Data.Take(8));

            intList.Clear();
            Assert.AreEqual(0, intList.Count);
            Assert.IsTrue(!intList.Contains(94));
        }
コード例 #2
0
        /// <summary>
        /// Determines the source files of the specified <see cref="Resource"/>, which
        /// were used during the most recent import and can be re-used during export and re-import operations.
        /// </summary>
        /// <param name="resource"></param>
        /// <returns></returns>
        public static string[] GetAssetSourceFiles(ContentRef <Resource> resource)
        {
            // Early-out, if the input Resource isn't available
            if (!resource.IsAvailable)
            {
                return(new string[0]);
            }

            // If the Resoure provides an explicit hint which source files were used, rely on that.
            AssetInfo assetInfo = resource.Res.AssetInfo;

            string[] sourceFileHint = (assetInfo != null) ? assetInfo.SourceFileHint : null;
            if (sourceFileHint != null && sourceFileHint.Length > 0)
            {
                string           baseDir         = AssetInternalHelper.GetSourceMediaBaseDir(resource);
                RawList <string> sourceFilePaths = new RawList <string>(sourceFileHint.Length);
                for (int i = 0; i < sourceFileHint.Length; i++)
                {
                    if (string.IsNullOrWhiteSpace(sourceFileHint[i]))
                    {
                        continue;
                    }

                    string path = Path.Combine(baseDir, sourceFileHint[i].Replace(AssetInfo.FileHintNameVariable, resource.Name));
                    sourceFilePaths.Add(path);
                }
                sourceFilePaths.ShrinkToFit();
                return(sourceFilePaths.Data);
            }

            // As a fallback, use a simulated export to determine the imported source.
            // This is assuming a symmetrical import-export, which isn't always true.
            return(AssetManager.SimulateExportAssets(resource));
        }
コード例 #3
0
ファイル: RawListTest.cs プロジェクト: KSLcom/duality
		[Test] public void Basics()
		{
			RawList<int> intList = new RawList<int>();
			intList.Add(10);
			intList.AddRange(new int[] { 17, 42, 94 });

			Assert.AreEqual(4, intList.Count);
			Assert.IsTrue(intList.Contains(42));
			Assert.AreEqual(2, intList.IndexOf(42));
			CollectionAssert.AreEqual(new int[] { 10, 17, 42, 94 }, intList);
			CollectionAssert.AreEqual(new int[] { 10, 17, 42, 94 }, intList.Data.Take(4));

			intList.ShrinkToFit();
			Assert.AreEqual(intList.Count, intList.Capacity);

			intList.Remove(42);
			Assert.AreEqual(3, intList.Count);
			Assert.IsTrue(!intList.Contains(42));
			Assert.AreEqual(-1, intList.IndexOf(42));
			CollectionAssert.AreEqual(new int[] { 10, 17, 94 }, intList);
			CollectionAssert.AreEqual(new int[] { 10, 17, 94 }, intList.Data.Take(3));

			intList.Insert(1, 100);
			CollectionAssert.AreEqual(new int[] { 10, 100, 17, 94 }, intList);
			CollectionAssert.AreEqual(new int[] { 10, 100, 17, 94 }, intList.Data.Take(4));

			intList.InsertRange(2, new int[] { 150, 200, 250, 300 });
			CollectionAssert.AreEqual(new int[] { 10, 100, 150, 200, 250, 300, 17, 94 }, intList);
			CollectionAssert.AreEqual(new int[] { 10, 100, 150, 200, 250, 300, 17, 94 }, intList.Data.Take(8));

			intList.Clear();
			Assert.AreEqual(0, intList.Count);
			Assert.IsTrue(!intList.Contains(94));
		}