Files
ZuneShell.dll/UIX/Microsoft/Iris/Markup/SSLexUnicodeBufferConsumer.cs
T

53 lines
1.7 KiB
C#
Raw Normal View History

// Decompiled with JetBrains decompiler
// Type: Microsoft.Iris.Markup.SSLexUnicodeBufferConsumer
// Assembly: UIX, Version=4.8.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
// MVID: A56C6C9D-B7F6-46A9-8BDE-B3D9B8D60B11
// Assembly location: C:\Program Files\Zune\UIX.dll
using Microsoft.Iris.OS;
using SSVParseLib;
using System;
namespace Microsoft.Iris.Markup
{
internal class SSLexUnicodeBufferConsumer : SSLexConsumer
{
private unsafe char* _buffer;
private uint _length;
private string _prefix;
public SSLexUnicodeBufferConsumer(IntPtr buffer, uint length)
: this(buffer, length, "")
{
}
public unsafe SSLexUnicodeBufferConsumer(IntPtr buffer, uint length, string prefix)
{
this._buffer = (char*)buffer.ToPointer();
this._length = length;
this._prefix = prefix;
}
public override bool getNext() => this.GetCharAt(this.m_index, out this.m_current);
2021-03-31 17:15:06 -05:00
public override unsafe string getSubstring(int start, int length) => start + length <= this._prefix.Length ? this._prefix.Substring(start, length) : NativeApi.PtrToStringUni(new IntPtr(this._buffer + start - this._prefix.Length), length);
public unsafe bool GetCharAt(int position, out char ch)
{
if (position < this._prefix.Length)
{
ch = this._prefix[this.m_index];
return true;
}
int index = position - this._prefix.Length;
2021-03-31 17:15:06 -05:00
if (index < _length)
{
ch = this._buffer[index];
return true;
}
ch = char.MinValue;
return false;
}
}
}