mirror of
https://github.com/Wack0/IFPSTools.NET.git
synced 2025-06-18 10:45:36 -04:00

libifpscc: initial commit readme: document ifpscc/libifpscc license: add credits for ifpscc/libifpscc (derived from code also MIT licensed) libifps: make additional fields/types public for libifpscc libifps: fix field documentation for some opcodes libifps: fix loading functions that are not exported libifps: allow saving a nonexistant primitive type if the same primitive type was added already libifps: fix parsing Extended constants libifps: fix ushort/short being mapped to the wrong types in one table csproj: set Prefer32Bit=false for release builds
163 lines
5.0 KiB
C#
163 lines
5.0 KiB
C#
using System;
|
|
|
|
namespace LexicalAnalysis {
|
|
/// <summary>
|
|
/// String literal
|
|
/// </summary>
|
|
public sealed class TokenString : Token {
|
|
public TokenString(String val, String raw) {
|
|
if (val == null) {
|
|
throw new ArgumentNullException(nameof(val));
|
|
}
|
|
this.Val = val;
|
|
this.Raw = raw;
|
|
}
|
|
|
|
public override TokenKind Kind { get; } = TokenKind.STRING;
|
|
public String Raw { get; }
|
|
public String Val { get; }
|
|
|
|
public override String ToString() =>
|
|
$"{this.Kind} [{Line}:{Column}]: \"{this.Raw}\"\n\"{this.Val}\"";
|
|
}
|
|
|
|
|
|
public sealed class TokenUnicodeString : Token
|
|
{
|
|
public TokenUnicodeString(String val, String raw)
|
|
{
|
|
if (val == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(val));
|
|
}
|
|
this.Val = val;
|
|
this.Raw = raw;
|
|
}
|
|
|
|
public override TokenKind Kind { get; } = TokenKind.STRING;
|
|
public String Raw { get; }
|
|
public String Val { get; }
|
|
|
|
public override String ToString() =>
|
|
$"{this.Kind} [{Line}:{Column}]: L\"{this.Raw}\"\n\"{this.Val}\"";
|
|
}
|
|
|
|
public sealed class FSAString : FSA {
|
|
private enum State {
|
|
START,
|
|
END,
|
|
ERROR,
|
|
L,
|
|
Q,
|
|
QQ
|
|
};
|
|
|
|
private State _state;
|
|
private readonly FSAChar _fsachar;
|
|
private String _val;
|
|
private String _raw;
|
|
private bool unicode = false;
|
|
|
|
public FSAString() {
|
|
this._state = State.START;
|
|
this._fsachar = new FSAChar('\"');
|
|
this._raw = "";
|
|
this._val = "";
|
|
}
|
|
|
|
public override void Reset() {
|
|
this._state = State.START;
|
|
this._fsachar.Reset();
|
|
this._raw = "";
|
|
this._val = "";
|
|
unicode = false;
|
|
}
|
|
|
|
public override FSAStatus GetStatus() {
|
|
if (this._state == State.START) {
|
|
return FSAStatus.NONE;
|
|
}
|
|
if (this._state == State.END) {
|
|
return FSAStatus.END;
|
|
}
|
|
if (this._state == State.ERROR) {
|
|
return FSAStatus.ERROR;
|
|
}
|
|
return FSAStatus.RUNNING;
|
|
}
|
|
|
|
public override Token RetrieveToken() {
|
|
if (unicode) return new TokenUnicodeString(this._val, this._raw);
|
|
return new TokenString(this._val, this._raw);
|
|
}
|
|
|
|
public override void ReadChar(Char ch) {
|
|
switch (this._state) {
|
|
case State.END:
|
|
case State.ERROR:
|
|
this._state = State.ERROR;
|
|
break;
|
|
case State.START:
|
|
switch (ch) {
|
|
case 'L':
|
|
unicode = true;
|
|
this._state = State.L;
|
|
break;
|
|
case '\"':
|
|
this._state = State.Q;
|
|
this._fsachar.Reset();
|
|
break;
|
|
default:
|
|
this._state = State.ERROR;
|
|
break;
|
|
}
|
|
break;
|
|
case State.L:
|
|
if (ch == '\"') {
|
|
this._state = State.Q;
|
|
this._fsachar.Reset();
|
|
} else {
|
|
this._state = State.ERROR;
|
|
}
|
|
break;
|
|
case State.Q:
|
|
if (this._fsachar.GetStatus() == FSAStatus.NONE && ch == '\"') {
|
|
this._state = State.QQ;
|
|
this._fsachar.Reset();
|
|
} else {
|
|
this._fsachar.ReadChar(ch);
|
|
switch (this._fsachar.GetStatus()) {
|
|
case FSAStatus.END:
|
|
this._state = State.Q;
|
|
this._val = this._val + this._fsachar.RetrieveChar();
|
|
this._raw = this._raw + this._fsachar.RetrieveRaw();
|
|
this._fsachar.Reset();
|
|
ReadChar(ch);
|
|
break;
|
|
case FSAStatus.ERROR:
|
|
this._state = State.ERROR;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
case State.QQ:
|
|
this._state = State.END;
|
|
break;
|
|
default:
|
|
this._state = State.ERROR;
|
|
break;
|
|
}
|
|
}
|
|
|
|
public override void ReadEOF() {
|
|
if (this._state == State.QQ) {
|
|
this._state = State.END;
|
|
} else {
|
|
this._state = State.ERROR;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |