mysticbbs/mystic/mplc.pas

99 lines
3.0 KiB
ObjectPascal
Raw Normal View History

2012-02-13 16:53:02 -08:00
// ====================================================================
2013-02-26 04:45:01 -08:00
// Mystic BBS Software Copyright 1997-2013 By James Coyle
2012-02-13 16:53:02 -08:00
// ====================================================================
//
// This file is part of Mystic BBS.
//
// Mystic BBS is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Mystic BBS is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Mystic BBS. If not, see <http://www.gnu.org/licenses/>.
//
// ====================================================================
Program MPLC;
2012-03-18 15:31:33 -07:00
{$I M_OPS.PAS}
2012-02-13 16:53:02 -08:00
Uses
2012-03-18 15:31:33 -07:00
DOS,
2012-02-13 16:53:02 -08:00
m_Output,
m_Strings,
MPL_Compile;
2012-03-18 15:31:33 -07:00
{$I RECORDS.PAS}
2012-02-13 16:53:02 -08:00
Var
SavedX : Byte;
2013-05-25 10:56:32 -07:00
SavedY : Byte;
2012-02-13 16:53:02 -08:00
Console : TOutput;
WasError : Boolean;
Procedure Status (Info: TParserUpdateInfo);
Begin
Case Info.Mode of
StatusStart : Begin
Console.WriteStr('Compiling ' + Info.FileName + ' ... ');
SavedX := Console.CursorX;
End;
StatusUpdate : Begin
Console.CursorXY (SavedX, Console.CursorY);
Console.WriteStr (strPadL(strI2S(Info.Percent), 3, ' ') + '%');
End;
StatusDone : If Info.ErrorType = 0 Then Begin
Console.CursorXY (SavedX, Console.CursorY);
Console.WriteLine ('Success!');
End Else Begin
WasError := True;
Console.WriteLine(#13#10#13#10'Error in ' + Info.FileName + ' (Line:' + strI2S(Info.ErrorLine) + ', Col:' + strI2S(Info.ErrorCol) + '): ' + Info.ErrorText);
End;
End;
End;
Var
Parser : TParserEngine;
Dir : SearchRec;
Begin
WasError := False;
Console := TOutput.Create(True);
Console.WriteLine (#13#10'Mystic BBS Programming Language Compiler Version ' + mysVersion);
2012-03-18 15:31:33 -07:00
Console.WriteLine ('Copyright (C) ' + mysCopyYear + ' By James Coyle. All Rights Reserved.'#13#10);
2012-02-13 16:53:02 -08:00
If ParamCount = 0 Then
WriteLn ('MPLC [filename] or MPLC -ALL')
Else Begin
If Pos('-ALL', strUpper(ParamStr(1))) > 0 Then Begin
FindFirst ('*.mps', AnyFile - Directory - VolumeID, Dir);
2013-05-25 10:56:32 -07:00
2012-02-13 16:53:02 -08:00
While DosError = 0 Do Begin
Parser := TParserEngine.Create(Status);
2013-05-25 10:56:32 -07:00
Parser.Compile(Dir.Name);
2012-02-13 16:53:02 -08:00
Parser.Free;
2013-05-25 10:56:32 -07:00
FindNext(Dir);
2012-02-13 16:53:02 -08:00
End;
2013-05-25 10:56:32 -07:00
2012-02-13 16:53:02 -08:00
FindClose(Dir);
End Else Begin
Parser := TParserEngine.Create(Status);
Parser.Compile(ParamStr(1));
Parser.Free;
End;
End;
Console.Free;
If WasError Then Halt(1);
End.