virtualx-engine/modules/mono/editor/GodotTools/GodotTools.ProjectEditor/ProjectExtensions.cs

118 lines
3.8 KiB
C#
Raw Normal View History

using GodotTools.Core;
2017-10-02 23:24:00 +02:00
using System;
using System.Collections.Generic;
using System.IO;
2017-10-02 23:24:00 +02:00
using Microsoft.Build.Construction;
using Microsoft.Build.Globbing;
2017-10-02 23:24:00 +02:00
namespace GodotTools.ProjectEditor
2017-10-02 23:24:00 +02:00
{
public static class ProjectExtensions
{
public static ProjectItemElement FindItemOrNull(this ProjectRootElement root, string itemType, string include, bool noCondition = false)
2017-10-02 23:24:00 +02:00
{
2018-10-22 19:20:29 +02:00
string normalizedInclude = include.NormalizePath();
2017-10-02 23:24:00 +02:00
foreach (var itemGroup in root.ItemGroups)
{
if (noCondition && itemGroup.Condition.Length != 0)
2017-10-02 23:24:00 +02:00
continue;
foreach (var item in itemGroup.Items)
{
2018-10-22 19:20:29 +02:00
if (item.ItemType != itemType)
continue;
var glob = MSBuildGlob.Parse(item.Include.NormalizePath());
2018-10-22 19:20:29 +02:00
if (glob.IsMatch(normalizedInclude))
return item;
2017-10-02 23:24:00 +02:00
}
}
return null;
}
public static ProjectItemElement FindItemOrNullAbs(this ProjectRootElement root, string itemType, string include, bool noCondition = false)
{
string normalizedInclude = Path.GetFullPath(include).NormalizePath();
foreach (var itemGroup in root.ItemGroups)
{
if (noCondition && itemGroup.Condition.Length != 0)
continue;
foreach (var item in itemGroup.Items)
{
if (item.ItemType != itemType)
continue;
var glob = MSBuildGlob.Parse(Path.GetFullPath(item.Include).NormalizePath());
if (glob.IsMatch(normalizedInclude))
return item;
}
}
return null;
}
public static IEnumerable<ProjectItemElement> FindAllItemsInFolder(this ProjectRootElement root, string itemType, string folder)
{
string absFolderNormalizedWithSep = Path.GetFullPath(folder).NormalizePath() + Path.DirectorySeparatorChar;
foreach (var itemGroup in root.ItemGroups)
{
foreach (var item in itemGroup.Items)
{
if (item.ItemType != itemType)
continue;
string absPathNormalized = Path.GetFullPath(item.Include).NormalizePath();
if (absPathNormalized.StartsWith(absFolderNormalizedWithSep))
yield return item;
}
}
}
public static bool HasItem(this ProjectRootElement root, string itemType, string include, bool noCondition = false)
{
return root.FindItemOrNull(itemType, include, noCondition) != null;
2017-10-02 23:24:00 +02:00
}
public static bool AddItemChecked(this ProjectRootElement root, string itemType, string include)
2017-10-02 23:24:00 +02:00
{
if (!root.HasItem(itemType, include, noCondition: true))
2017-10-02 23:24:00 +02:00
{
root.AddItem(itemType, include);
return true;
2017-10-02 23:24:00 +02:00
}
return false;
2017-10-02 23:24:00 +02:00
}
public static bool RemoveItemChecked(this ProjectRootElement root, string itemType, string include)
{
var item = root.FindItemOrNullAbs(itemType, include);
if (item != null)
{
item.Parent.RemoveChild(item);
return true;
}
return false;
}
2017-10-02 23:24:00 +02:00
public static Guid GetGuid(this ProjectRootElement root)
{
foreach (var property in root.Properties)
{
if (property.Name == "ProjectGuid")
return Guid.Parse(property.Value);
}
return Guid.Empty;
}
}
}