本文整理汇总了C#中BlamLib.ReadTag方法的典型用法代码示例。如果您正苦于以下问题:C# BlamLib.ReadTag方法的具体用法?C# BlamLib.ReadTag怎么用?C# BlamLib.ReadTag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlamLib
的用法示例。
在下文中一共展示了BlamLib.ReadTag方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Read
public void Read(BlamLib.IO.EndianReader s)
{
char[] tag = s.ReadTag();
if (!TagInterface.TagGroup.Test(tag, Ext))
throw new Debug.ExceptionLog("File '{0}' had a bad header '{1}'", s.FileName, new string(tag));
int count = s.ReadInt32();
//Names = new List<string>(count);
//ScenarioOffsets = new List<int>(count);
for (int x = 0; x < count; x++)
{
Names.Add(s.ReadString());
Scenarios.Add(s.ReadString());
}
}
示例2: Read
public void Read(BlamLib.IO.EndianReader s)
{
if (!MiscGroups.crdb.Test(s.ReadTag())) throw new Debug.ExceptionLog("{0} is not a resource db!", s.FileName);
if (s.ReadInt32() != kVersion) throw new Debug.ExceptionLog("{0} is an unsupported db!", s.FileName);
items = new List<CacheResourceDatabaseItem>(s.ReadInt32());
for(int x = 0; x < items.Count; x++)
(items[x] = new CacheResourceDatabaseItem()).Read(s);
}