mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: SSVParseLib.SSLexTableRow
|
|
// 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
|
|
|
|
namespace SSVParseLib
|
|
{
|
|
internal class SSLexTableRow
|
|
{
|
|
private int m_size;
|
|
private SSLexTableRowEntry[] m_entries;
|
|
|
|
public SSLexTableRow(int[] q_row, int q_index)
|
|
{
|
|
m_size = q_row[q_index];
|
|
if (m_size > 0)
|
|
m_entries = new SSLexTableRowEntry[m_size];
|
|
++q_index;
|
|
for (int index = 0; index < m_size; ++index)
|
|
{
|
|
m_entries[index] = new SSLexTableRowEntry(q_row[q_index], q_row[q_index + 1], q_row[q_index + 2]);
|
|
q_index += 3;
|
|
}
|
|
}
|
|
|
|
public int lookup(int q_code)
|
|
{
|
|
for (int index = 0; index < m_size; ++index)
|
|
{
|
|
SSLexTableRowEntry entry = m_entries[index];
|
|
if (q_code < entry.start())
|
|
return -1;
|
|
if (q_code <= entry.end())
|
|
return entry.state();
|
|
}
|
|
return -1;
|
|
}
|
|
}
|
|
}
|