delphimvcframework/sources/MVCFramework.Console.pas

268 lines
7.0 KiB
ObjectPascal
Raw Normal View History

// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2020 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// *************************************************************************** }
2017-10-16 22:57:27 +02:00
unit MVCFramework.Console;
interface
uses
{$IFDEF MSWINDOWS}
WinApi.Windows, System.SysUtils
{$ENDIF}
{$IFDEF LINUX}
{$ENDIF}
;
2017-10-16 22:57:27 +02:00
type
{$IFDEF MSWINDOWS}
// https://stackoverflow.com/questions/17125440/c-win32-console-color
// https://docs.microsoft.com/en-us/dotnet/api/system.consolecolor?view=netcore-3.1
TConsoleColor = (Black = 0, // The color black.
DarkBlue = 1, // The color dark blue.
DarkGreen = 2, // The color dark green.
DarkCyan = 3, // The color dark cyan (dark blue-green).
DarkRed = 4, // The color dark red.
DarkMagenta = 5, // The color dark magenta (dark purplish-red).
DarkYellow = 6, // The color dark yellow (ochre).
Gray = 7, // The color gray.
DarkGray = 8, // The color dark gray.
Blue = 9, // The color blue.
Green = 10, // The color green.
Cyan = 11, // The color Cyan(Blue - green).
Red = 12, // The color red.
Magenta = 13, // The color magenta (purplish-red).
Yellow = 14, // The color yellow.
White = 15 // The color white.
);
{$ENDIF}
type
EMVCConsole = class(Exception)
end;
TMVCConsoleSize = record
Columns: Word;
Rows: Word;
end;
2017-10-16 22:57:27 +02:00
procedure ResetConsole;
procedure TextColor(const color: TConsoleColor);
procedure TextBackground(const color: TConsoleColor);
procedure GotoXY(const X, Y: Byte);
function GetConsoleSize: TMVCConsoleSize;
function GetConsoleBufferSize: TMVCConsoleSize;
procedure ClrScr;
function GetCh: Char;
function ColorName(const color: TConsoleColor): String;
2017-10-16 22:57:27 +02:00
implementation
uses
System.TypInfo;
2017-10-16 22:57:27 +02:00
const
ESC = Chr(27);
var
GForeGround: Integer;
GBackGround: Integer;
GOutHandle: THandle = INVALID_HANDLE_VALUE;
GInputHandle: THandle = INVALID_HANDLE_VALUE;
2017-10-16 22:57:27 +02:00
function ColorName(const color: TConsoleColor): String;
2017-10-16 22:57:27 +02:00
begin
Result := GetEnumName(TypeInfo(TConsoleColor), Ord(color));
2017-10-16 22:57:27 +02:00
end;
{$IFDEF LINUX}
procedure Init; inline;
begin
end;
2017-10-16 22:57:27 +02:00
procedure UpdateMode;
2017-10-16 22:57:27 +02:00
begin
2017-10-16 22:57:27 +02:00
end;
function GetConsoleSize: TMVCConsoleSize;
begin
raise EMVCConsole.Create('Not Implemented');
end;
2017-10-16 22:57:27 +02:00
function GetConsoleBufferSize: TMVCConsoleSize;
begin
raise EMVCConsole.Create('Not Implemented');
end;
2017-10-16 22:57:27 +02:00
procedure ClrScr;
begin
raise EMVCConsole.Create('Not Implemented');
end;
2017-10-16 22:57:27 +02:00
{$ENDIF}
{$IFDEF MSWINDOWS}
procedure ClrScr;
2017-10-16 22:57:27 +02:00
var
lSize: TMVCConsoleSize;
dwConSize: UInt32;
lStartCoord: _COORD;
lCharsWritten: UInt32;
lConsoleScreenBufferInfo: _CONSOLE_SCREEN_BUFFER_INFO;
2017-10-16 22:57:27 +02:00
begin
// https://docs.microsoft.com/en-us/windows/console/clearing-the-screen
lSize := GetConsoleBufferSize;
dwConSize := lSize.Columns * lSize.Rows;
lStartCoord.X := 0;
lStartCoord.Y := 0;
if not FillConsoleOutputCharacter(GOutHandle, ' ', dwConSize, lStartCoord, lCharsWritten) then
raise EMVCConsole.CreateFmt('Cannot fill console with blank char - GetLastError() = %d', [GetLastError]);
if not GetConsoleScreenBufferInfo(GOutHandle, lConsoleScreenBufferInfo) then
raise EMVCConsole.CreateFmt('Cannot GetConsoleScreenBufferInfo - GetLastError() = %d', [GetLastError]);
2017-10-16 22:57:27 +02:00
if not FillConsoleOutputAttribute(GOutHandle, lConsoleScreenBufferInfo.wAttributes, dwConSize, lStartCoord,
lCharsWritten) then
raise EMVCConsole.CreateFmt('Cannot FillConsoleOutputAttribute - GetLastError() = %d', [GetLastError]);
2017-10-16 22:57:27 +02:00
GotoXY(0, 0);
2017-10-16 22:57:27 +02:00
end;
function GetConsoleSize: TMVCConsoleSize;
var
lConsoleScreenBufferInfo: _CONSOLE_SCREEN_BUFFER_INFO;
begin
if not GetConsoleScreenBufferInfo(GOutHandle, lConsoleScreenBufferInfo) then
raise EMVCConsole.CreateFmt('Cannot Get Console Size - GetLastError() = %d', [GetLastError]);
Result.Columns := lConsoleScreenBufferInfo.srWindow.Right - lConsoleScreenBufferInfo.srWindow.Left + 1;
Result.Rows := lConsoleScreenBufferInfo.srWindow.Bottom - lConsoleScreenBufferInfo.srWindow.Top + 1;
end;
2017-10-16 22:57:27 +02:00
procedure EnsureStdInput;
begin
if GInputHandle = INVALID_HANDLE_VALUE then
begin
GInputHandle := GetStdHandle(STD_INPUT_HANDLE);
if GInputHandle = INVALID_HANDLE_VALUE then
begin
raise EMVCConsole.CreateFmt('Cannot Get STD_INPUT_HANDLE - GetLastError() = %d', [GetLastError]);
end;
end;
end;
function GetCh: Char;
var
lMode, lCC: DWORD;
C: Char;
begin
EnsureStdInput;
C := #0;
Win32Check(GetConsoleMode(GInputHandle, lMode));
Win32Check(SetConsoleMode(GInputHandle, lMode and (not(ENABLE_LINE_INPUT or ENABLE_ECHO_INPUT))));
try
lCC := 0;
Win32Check(ReadConsole(GInputHandle, @C, SizeOf(Char), lCC, nil));
finally
Win32Check(SetConsoleMode(GInputHandle, lMode));
end;
Result := C;
end;
function GetConsoleBufferSize: TMVCConsoleSize;
var
lConsoleScreenBufferInfo: _CONSOLE_SCREEN_BUFFER_INFO;
begin
if not GetConsoleScreenBufferInfo(GOutHandle, lConsoleScreenBufferInfo) then
raise EMVCConsole.CreateFmt('Cannot Get Console Buffer Size - GetLastError() = %d', [GetLastError]);
Result.Columns := lConsoleScreenBufferInfo.dwSize.X;
Result.Rows := lConsoleScreenBufferInfo.dwSize.Y;
end;
procedure Init; inline;
begin
GOutHandle := GetStdHandle(STD_OUTPUT_HANDLE);
if GOutHandle = INVALID_HANDLE_VALUE then
raise EMVCConsole.CreateFmt('Cannot Get STD_OUTPUT_HANDLE - GetLastError() = %d', [GetLastError]);
end;
procedure UpdateMode;
2017-10-16 22:57:27 +02:00
begin
SetConsoleTextAttribute(GOutHandle, Ord(GForeGround) or Ord(GBackGround));
2017-10-16 22:57:27 +02:00
end;
procedure GotoXY(const X, Y: Byte);
var
lCoord: _COORD;
2017-10-16 22:57:27 +02:00
begin
lCoord.X := X;
lCoord.Y := Y;
if not SetConsoleCursorPosition(GOutHandle, lCoord) then
begin
raise EMVCConsole.Create('Invalid Coordinates');
end;
2017-10-16 22:57:27 +02:00
end;
{$ENDIF}
procedure ResetConsole;
2017-10-16 22:57:27 +02:00
begin
// write(ESC + '[0m');
GForeGround := Ord(TConsoleColor.DarkGray);
GBackGround := Ord(TConsoleColor.Black);
UpdateMode;
2017-10-16 22:57:27 +02:00
end;
procedure TextColor(const color: TConsoleColor);
2017-10-16 22:57:27 +02:00
begin
GForeGround := Ord(color);
UpdateMode;
// write(ESC + GetColorString);
2017-10-16 22:57:27 +02:00
end;
procedure TextBackground(const color: TConsoleColor);
2017-10-16 22:57:27 +02:00
begin
GBackGround := Ord(color) shl 4;
UpdateMode;
// write(ESC + GetColorString);
2017-10-16 22:57:27 +02:00
end;
procedure SetDefaults;
2017-10-16 22:57:27 +02:00
begin
GForeGround := Ord(TConsoleColor.White);
GBackGround := Ord(TConsoleColor.Black);
UpdateMode;
2017-10-16 22:57:27 +02:00
end;
initialization
Init;
SetDefaults;
2017-10-16 22:57:27 +02:00
finalization
end.