📄 psvpas.pas
字号:
{*******************************************************}
{ RichEdit Syntax HighLight }
{ version 3.0 }
{ Author: }
{ Serhiy Perevoznyk }
{ serge_perevoznyk@hotmail.com }
{*******************************************************}
{The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: SynHighlighterPas.pas, released 2000-04-17.
The Original Code is based on the mwPasSyn.pas file from the
mwEdit component suite by Martin Waldenburg and other developers, the Initial
Author of this file is Martin Waldenburg.
Portions created by Martin Waldenburg are Copyright (C) 1998 Martin Waldenburg.
All Rights Reserved.
The Original Code can be obtained from http://synedit.sourceforge.net/
}
unit psvPas;
interface
uses
SysUtils,
Windows,
Classes,
Controls,
psvRichSyntax,
Graphics;
type
TtkTokenKind = (tkAsm, tkComment, tkIdentifier, tkKey, tkNull, tkNumber,
tkSpace, tkString, tkSymbol, tkUnknown);
TRangeState = (rsANil, rsAnsi, rsAnsiAsm, rsAsm, rsBor, rsBorAsm, rsProperty,
rsUnKnown);
TProcTableProc = procedure of object;
PIdentFuncTableFunc = ^TIdentFuncTableFunc;
TIdentFuncTableFunc = function: TtkTokenKind of object;
TpsvPasRTF = class(TpsvRTFSyntax)
private
fAsmStart: Boolean;
fRange: TRangeState;
fLine: PChar;
fLineNumber: Integer;
fProcTable: array[#0..#255] of TProcTableProc;
Run: LongInt;
fStringLen: Integer;
fToIdent: PChar;
fIdentFuncTable: array[0..191] of TIdentFuncTableFunc;
fTokenPos: Integer;
FTokenID: TtkTokenKind;
function KeyHash(ToHash: PChar): Integer;
function KeyComp(const aKey: string): Boolean;
function Func15: TtkTokenKind;
function Func19: TtkTokenKind;
function Func20: TtkTokenKind;
function Func21: TtkTokenKind;
function Func23: TtkTokenKind;
function Func25: TtkTokenKind;
function Func27: TtkTokenKind;
function Func28: TtkTokenKind;
function Func32: TtkTokenKind;
function Func33: TtkTokenKind;
function Func35: TtkTokenKind;
function Func37: TtkTokenKind;
function Func38: TtkTokenKind;
function Func39: TtkTokenKind;
function Func40: TtkTokenKind;
function Func41: TtkTokenKind;
function Func44: TtkTokenKind;
function Func45: TtkTokenKind;
function Func47: TtkTokenKind;
function Func49: TtkTokenKind;
function Func52: TtkTokenKind;
function Func54: TtkTokenKind;
function Func55: TtkTokenKind;
function Func56: TtkTokenKind;
function Func57: TtkTokenKind;
function Func59: TtkTokenKind;
function Func60: TtkTokenKind;
function Func61: TtkTokenKind;
function Func63: TtkTokenKind;
function Func64: TtkTokenKind;
function Func65: TtkTokenKind;
function Func66: TtkTokenKind;
function Func69: TtkTokenKind;
function Func71: TtkTokenKind;
function Func73: TtkTokenKind;
function Func75: TtkTokenKind;
function Func76: TtkTokenKind;
function Func79: TtkTokenKind;
function Func81: TtkTokenKind;
function Func84: TtkTokenKind;
function Func85: TtkTokenKind;
function Func87: TtkTokenKind;
function Func88: TtkTokenKind;
function Func91: TtkTokenKind;
function Func92: TtkTokenKind;
function Func94: TtkTokenKind;
function Func95: TtkTokenKind;
function Func96: TtkTokenKind;
function Func97: TtkTokenKind;
function Func98: TtkTokenKind;
function Func99: TtkTokenKind;
function Func100: TtkTokenKind;
function Func101: TtkTokenKind;
function Func102: TtkTokenKind;
function Func103: TtkTokenKind;
function Func105: TtkTokenKind;
function Func106: TtkTokenKind;
function Func117: TtkTokenKind;
function Func126: TtkTokenKind;
function Func129: TtkTokenKind;
function Func132: TtkTokenKind;
function Func133: TtkTokenKind;
function Func136: TtkTokenKind;
function Func141: TtkTokenKind;
function Func143: TtkTokenKind;
function Func166: TtkTokenKind;
function Func168: TtkTokenKind;
function Func191: TtkTokenKind;
function AltFunc: TtkTokenKind;
procedure InitIdent;
function IdentKind(MayBe: PChar): TtkTokenKind;
procedure MakeMethodTables;
procedure AddressOpProc;
procedure AsciiCharProc;
procedure AnsiProc;
procedure BorProc;
procedure BraceOpenProc;
procedure ColonOrGreaterProc;
procedure CRProc;
procedure IdentProc;
procedure IntegerProc;
procedure LFProc;
procedure LowerProc;
procedure NullProc;
procedure NumberProc;
procedure PointProc;
procedure RoundOpenProc;
procedure SemicolonProc;
procedure SlashProc;
procedure SpaceProc;
procedure StringProc;
procedure SymbolProc;
procedure UnknownProc;
protected
function GetEol: Boolean; override;
function GetRange: Pointer;
function GetToken: string; override;
function GetTokenAttribute: integer; override;
function GetTokenID: TtkTokenKind;
function GetTokenKind: integer;
function GetTokenPos: Integer;
procedure Next; override;
procedure ResetRange;
procedure SetLine(NewValue: string; LineNumber:Integer); override;
procedure SetRange(Value: Pointer);
procedure PrepareToken(var AToken : string); override;
function PrepareOutput(Attr: integer; AToken : string): string; override;
public
constructor Create; override;
procedure SetupDefaultColors; override;
end;
implementation
var
Identifiers: array[#0..#255] of ByteBool;
mHashTable: array[#0..#255] of Integer;
procedure MakeIdentTable;
var
I, J: Char;
begin
for I := #0 to #255 do
begin
Case I of
'_', '0'..'9', 'a'..'z', 'A'..'Z': Identifiers[I] := True;
else Identifiers[I] := False;
end;
J := UpCase(I);
Case I of
'a'..'z', 'A'..'Z', '_': mHashTable[I] := Ord(J) - 64;
else mHashTable[Char(I)] := 0;
end;
end;
end;
procedure TpsvPasRTF.InitIdent;
var
I: Integer;
pF: PIdentFuncTableFunc;
begin
pF := PIdentFuncTableFunc(@fIdentFuncTable);
for I := Low(fIdentFuncTable) to High(fIdentFuncTable) do begin
pF^ := AltFunc;
Inc(pF);
end;
fIdentFuncTable[15] := Func15;
fIdentFuncTable[19] := Func19;
fIdentFuncTable[20] := Func20;
fIdentFuncTable[21] := Func21;
fIdentFuncTable[23] := Func23;
fIdentFuncTable[25] := Func25;
fIdentFuncTable[27] := Func27;
fIdentFuncTable[28] := Func28;
fIdentFuncTable[32] := Func32;
fIdentFuncTable[33] := Func33;
fIdentFuncTable[35] := Func35;
fIdentFuncTable[37] := Func37;
fIdentFuncTable[38] := Func38;
fIdentFuncTable[39] := Func39;
fIdentFuncTable[40] := Func40;
fIdentFuncTable[41] := Func41;
fIdentFuncTable[44] := Func44;
fIdentFuncTable[45] := Func45;
fIdentFuncTable[47] := Func47;
fIdentFuncTable[49] := Func49;
fIdentFuncTable[52] := Func52;
fIdentFuncTable[54] := Func54;
fIdentFuncTable[55] := Func55;
fIdentFuncTable[56] := Func56;
fIdentFuncTable[57] := Func57;
fIdentFuncTable[59] := Func59;
fIdentFuncTable[60] := Func60;
fIdentFuncTable[61] := Func61;
fIdentFuncTable[63] := Func63;
fIdentFuncTable[64] := Func64;
fIdentFuncTable[65] := Func65;
fIdentFuncTable[66] := Func66;
fIdentFuncTable[69] := Func69;
fIdentFuncTable[71] := Func71;
fIdentFuncTable[73] := Func73;
fIdentFuncTable[75] := Func75;
fIdentFuncTable[76] := Func76;
fIdentFuncTable[79] := Func79;
fIdentFuncTable[81] := Func81;
fIdentFuncTable[84] := Func84;
fIdentFuncTable[85] := Func85;
fIdentFuncTable[87] := Func87;
fIdentFuncTable[88] := Func88;
fIdentFuncTable[91] := Func91;
fIdentFuncTable[92] := Func92;
fIdentFuncTable[94] := Func94;
fIdentFuncTable[95] := Func95;
fIdentFuncTable[96] := Func96;
fIdentFuncTable[97] := Func97;
fIdentFuncTable[98] := Func98;
fIdentFuncTable[99] := Func99;
fIdentFuncTable[100] := Func100;
fIdentFuncTable[101] := Func101;
fIdentFuncTable[102] := Func102;
fIdentFuncTable[103] := Func103;
fIdentFuncTable[105] := Func105;
fIdentFuncTable[106] := Func106;
fIdentFuncTable[117] := Func117;
fIdentFuncTable[126] := Func126;
fIdentFuncTable[129] := Func129;
fIdentFuncTable[132] := Func132;
fIdentFuncTable[133] := Func133;
fIdentFuncTable[136] := Func136;
fIdentFuncTable[141] := Func141;
fIdentFuncTable[143] := Func143;
fIdentFuncTable[166] := Func166;
fIdentFuncTable[168] := Func168;
fIdentFuncTable[191] := Func191;
end;
function TpsvPasRTF.KeyHash(ToHash: PChar): Integer;
begin
Result := 0;
while ToHash^ in ['a'..'z', 'A'..'Z'] do
begin
inc(Result, mHashTable[ToHash^]);
inc(ToHash);
end;
if ToHash^ in ['_', '0'..'9'] then inc(ToHash);
fStringLen := ToHash - fToIdent;
end; { KeyHash }
function TpsvPasRTF.KeyComp(const aKey: string): Boolean;
var
I: Integer;
Temp: PChar;
begin
Temp := fToIdent;
if Length(aKey) = fStringLen then
begin
Result := True;
for i := 1 to fStringLen do
begin
if mHashTable[Temp^] <> mHashTable[aKey[i]] then
begin
Result := False;
break;
end;
inc(Temp);
end;
end else Result := False;
end; { KeyComp }
function TpsvPasRTF.Func15: TtkTokenKind;
begin
if KeyComp('If') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func19: TtkTokenKind;
begin
if KeyComp('Do') then Result := tkKey else
if KeyComp('And') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func20: TtkTokenKind;
begin
if KeyComp('As') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func21: TtkTokenKind;
begin
if KeyComp('Of') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func23: TtkTokenKind;
begin
if KeyComp('End') then begin
Result := tkKey;
fRange := rsUnknown;
end else
if KeyComp('In') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func25: TtkTokenKind;
begin
if KeyComp('Far') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func27: TtkTokenKind;
begin
if KeyComp('Cdecl') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func28: TtkTokenKind;
begin
if KeyComp('Is') then Result := tkKey else
if KeyComp('Read') then
begin
if fRange = rsProperty then Result := tkKey else Result := tkIdentifier;
end else
if KeyComp('Case') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func32: TtkTokenKind;
begin
if KeyComp('Label') then Result := tkKey else
if KeyComp('Mod') then Result := tkKey else
if KeyComp('File') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func33: TtkTokenKind;
begin
if KeyComp('Or') then Result := tkKey else
if KeyComp('Asm') then
begin
Result := tkKey;
fRange := rsAsm;
fAsmStart := True;
end else Result := tkIdentifier;
end;
function TpsvPasRTF.Func35: TtkTokenKind;
begin
if KeyComp('Nil') then Result := tkKey else
if KeyComp('To') then Result := tkKey else
if KeyComp('Div') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func37: TtkTokenKind;
begin
if KeyComp('Begin') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func38: TtkTokenKind;
begin
if KeyComp('Near') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func39: TtkTokenKind;
begin
if KeyComp('For') then Result := tkKey else
if KeyComp('Shl') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func40: TtkTokenKind;
begin
if KeyComp('Packed') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func41: TtkTokenKind;
begin
if KeyComp('Else') then Result := tkKey else
if KeyComp('Var') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func44: TtkTokenKind;
begin
if KeyComp('Set') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func45: TtkTokenKind;
begin
if KeyComp('Shr') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func47: TtkTokenKind;
begin
if KeyComp('Then') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func49: TtkTokenKind;
begin
if KeyComp('Not') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func52: TtkTokenKind;
begin
if KeyComp('Pascal') then Result := tkKey else
if KeyComp('Raise') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func54: TtkTokenKind;
begin
if KeyComp('Class') then Result := tkKey
else Result := tkIdentifier;
end;
function TpsvPasRTF.Func55: TtkTokenKind;
begin
if KeyComp('Object') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func56: TtkTokenKind;
begin
if KeyComp('Index') then
begin
if fRange = rsProperty then Result := tkKey else Result := tkIdentifier;
end else
if KeyComp('Out') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func57: TtkTokenKind;
begin
if KeyComp('Goto') then Result := tkKey else
if KeyComp('While') then Result := tkKey else
if KeyComp('Xor') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func59: TtkTokenKind;
begin
if KeyComp('Safecall') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func60: TtkTokenKind;
begin
if KeyComp('With') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func61: TtkTokenKind;
begin
if KeyComp('Dispid') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func63: TtkTokenKind;
begin
if KeyComp('Public') then Result := tkKey else
if KeyComp('Record') then Result := tkKey else
if KeyComp('Array') then Result := tkKey else
if KeyComp('Try') then Result := tkKey else
if KeyComp('Inline') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func64: TtkTokenKind;
begin
if KeyComp('Unit') then Result := tkKey else
if KeyComp('Uses') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func65: TtkTokenKind;
begin
if KeyComp('Repeat') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func66: TtkTokenKind;
begin
if KeyComp('Type') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func69: TtkTokenKind;
begin
if KeyComp('Default') then Result := tkKey else
if KeyComp('Dynamic') then Result := tkKey else
if KeyComp('Message') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func71: TtkTokenKind;
begin
if KeyComp('Stdcall') then Result := tkKey else
if KeyComp('Const') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func73: TtkTokenKind;
begin
if KeyComp('Except') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func75: TtkTokenKind;
begin
if KeyComp('Write') then
begin
if fRange = rsProperty then Result := tkKey else Result := tkIdentifier;
end else Result := tkIdentifier;
end;
function TpsvPasRTF.Func76: TtkTokenKind;
begin
if KeyComp('Until') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func79: TtkTokenKind;
begin
if KeyComp('Finally') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func81: TtkTokenKind;
begin
if KeyComp('Stored') then
begin
if fRange = rsProperty then Result := tkKey else Result := tkIdentifier;
end else
if KeyComp('Interface') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func84: TtkTokenKind;
begin
if KeyComp('Abstract') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func85: TtkTokenKind;
begin
if KeyComp('Forward') then Result := tkKey else
if KeyComp('Library') then Result := tkKey else Result := tkIdentifier;
end;
function TpsvPasRTF.Func87: TtkTokenKind;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -