cocossharp TilePropertiesForGID(info.Gid)始终返回null

时间:2019-01-08 00:01:28

标签: xamarin cocossharp

我正在使用CocoSharp.PCL.Shared Nuget版本1.6.2,并且试图获取tile属性。

以下是TileSet.tsx:

<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.2" tiledversion="1.2.1" name="wood_tileset" tilewidth="32" tileheight="32" tilecount="256" columns="16">
 <image source="wood_tileset.png" width="512" height="512"/>
 <tile id="68">
  <properties>
   <property name="IsTreasure" value="true"/>
  </properties>
 </tile>
</tileset>

为获得我的财产而调用的函数:

void HandleCustomTilePropertyAt(int worldX, int worldY, CCTileMapLayer layer)
    {
        CCTileMapCoordinates tileAtXy = layer.ClosestTileCoordAtNodePosition(new CCPoint(worldX, worldY));

        CCTileGidAndFlags info = layer.TileGIDAndFlags(tileAtXy.Column, tileAtXy.Row);

        if (info != null && info.Gid == 68)
        {
            Dictionary<string, string> properties = null;

            try
            {
                properties = tileMap.TilePropertiesForGID(info.Gid);
            }
            catch
            {
                // CocosSharp 
            }

            if (properties != null && properties.ContainsKey("IsTreasure") && properties["IsTreasure"] == "true" )
            {
                layer.RemoveTile(tileAtXy);

                // todo: Create a treasure chest entity
            }
        }
    }

问题在于:properties = tileMap.TilePropertiesForGID(info.Gid);始终返回null。

但是,如果我中断查看非公共变量,则可以看到tile的属性: enter image description here

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

我找到了一种获取磁贴属性的方法。

  1. 从tileet.tsx获取流
  2. 从特定图块ID获取属性
  3. 创建一个函数来解析xml文件tileet.tsx,使其像以前的cocossharp一样起作用。

Program.cs 中,由于它继承自活动,因此我可以打开所有资产:

public class Program : AndroidGameActivity
{

    protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);

        CCApplication application = new CCApplication();
        application.ApplicationDelegate = new AppDelegate();

        this.SetContentView(application.AndroidContentView);
        this.LoadTileMapProperty();

        application.StartGame();
    }

    private void LoadTileMapProperty()
    {
        Settings.TileMapStream = new StreamReader(Assets.Open("Content/tileMap/wood_tileset.tsx"));
    }

}

在我的 GameLayer.cs 中:

 void HandleCustomTilePropertyAt(int worldX, int worldY, CCTileMapLayer layer)
    {
        CCTileMapCoordinates tileAtXy = layer.ClosestTileCoordAtNodePosition(new CCPoint(worldX, worldY));

        CCTileGidAndFlags info = layer.TileGIDAndFlags(tileAtXy.Column, tileAtXy.Row);

        if (info != null && info.Gid == 68)
        {
            Dictionary<string, string> properties = null;

            try
            {
                properties = tileMap.TilePropertiesForTileID(info.Gid);
            }
            catch
            {
                // CocosSharp 
            }

            if (properties != null && properties.ContainsKey("IsTreasure") && properties["IsTreasure"] == "true")
            {
                //test adding entity via tileMap
                reliefLayer.AddChild(new Tree(tileAtXy), 3);
            }
        }
    }

然后我用以下函数替换了Cocossharp库给出的函数:

public Dictionary<string, string> TilePropertiesForTileID(short tileGid)
    {
        Dictionary<string, string> propertiesDict = new Dictionary<string, string>();

        try
        {
            // Loading from a file, you can also load from a stream
            var xmlDoc = XDocument.Load(Settings.TileMapStream);

            // Query the data and write out a subset of contacts
            var propertiesQuery = xmlDoc.Root.Descendants("tile")
                                        .Where(item => (int)item.Attribute("id") == tileGid)
                                        .SelectMany(a => a.Descendants("property"))
                                        .Select(property => new
                                        {
                                            Name = property.Attribute("name").Value,
                                            Value = property.Attribute("value").Value
                                        })
                                        .ToList();

            foreach (var property in propertiesQuery)
            {
                Console.WriteLine($"Property Name: {property.Name}, Value: {property.Value}");
                propertiesDict.Add(property.Name, property.Value);
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        }


        return propertiesDict;
    }