...
This commit is contained in:
parent
f31d02a96c
commit
59169b5168
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
||||||
public const string Major = "2";
|
public const string Major = "2";
|
||||||
public const string Minor = "2";
|
public const string Minor = "2";
|
||||||
public const string Build = "0";
|
public const string Build = "0";
|
||||||
public const string Revision = "965";
|
public const string Revision = "966";
|
||||||
|
|
||||||
public const string MainVersion = Major + "." + Minor;
|
public const string MainVersion = Major + "." + Minor;
|
||||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
%MINOR%=2
|
%MINOR%=2
|
||||||
%REVISION%=965
|
%REVISION%=966
|
||||||
%MAJOR%=2
|
%MAJOR%=2
|
||||||
%COREVERSION%=0
|
%COREVERSION%=0
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -70,7 +70,7 @@ Var PABCWorkNETPath
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
;Pages
|
;Pages
|
||||||
|
|
||||||
!insertmacro MUI_PAGE_LICENSE $(MUILicense)
|
;!insertmacro MUI_PAGE_LICENSE $(MUILicense)
|
||||||
!insertmacro MUI_PAGE_COMPONENTS
|
!insertmacro MUI_PAGE_COMPONENTS
|
||||||
!insertmacro MUI_PAGE_DIRECTORY
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
Page custom fnc_PABCWorkNETDriveChoose_Show
|
Page custom fnc_PABCWorkNETDriveChoose_Show
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
!define VERSION '2.2.0.965'
|
!define VERSION '2.2.0.966'
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit ABCButtons;
|
unit ABCButtons;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit ABCHouse;
|
unit ABCHouse;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
|
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
|
||||||
///создания составных графических объектов и многократного их вложения друг в друга.
|
///создания составных графических объектов и многократного их вложения друг в друга.
|
||||||
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров
|
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
|
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
|
||||||
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
|
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
|
||||||
unit ABCSprites;
|
unit ABCSprites;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
unit Arrays;
|
unit Arrays;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
|
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
|
||||||
/// </summary>
|
/// </summary>
|
||||||
unit CRT;
|
unit CRT;
|
||||||
|
|
||||||
// Âåðñèÿ 0.3
|
|
||||||
// Copyright (c) 2006-2007 DarkStar, SSM (parts)
|
|
||||||
|
|
||||||
{$apptype console}
|
{$apptype console}
|
||||||
{$gendoc true}
|
{$gendoc true}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Core;
|
unit Core;
|
||||||
{$reference 'System.Core.dll'}
|
{$reference 'System.Core.dll'}
|
||||||
end.
|
end.
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DMCollect;
|
unit DMCollect;
|
||||||
|
|
||||||
{$reference 'System.Drawing.dll'}
|
{$reference 'System.Drawing.dll'}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DMTaskMaker;
|
unit DMTaskMaker;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DrawManField;
|
unit DrawManField;
|
||||||
|
|
||||||
//#savepcu false
|
//#savepcu false
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
|
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
|
||||||
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
|
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
|
||||||
unit Drawman;
|
unit Drawman;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit FilesOperations;
|
unit FilesOperations;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit FormsABC;
|
unit FormsABC;
|
||||||
|
|
||||||
{$apptype windows}
|
{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
|
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
|
||||||
unit GraphABC;
|
unit GraphABC;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit GraphABCHelper;
|
unit GraphABCHelper;
|
||||||
|
|
||||||
//{$apptype windows}
|
//{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit IniFile;
|
unit IniFile;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit MPI;
|
unit MPI;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
/// Ñòàíäàðòíûé ìîäóëü
|
/// Ñòàíäàðòíûé ìîäóëü
|
||||||
/// !! System unit
|
/// !! System unit
|
||||||
unit PABCSystem;
|
unit PABCSystem;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
unit PointerTools;
|
unit PointerTools;
|
||||||
|
|
||||||
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);
|
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
|
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
|
||||||
///Основная цель Робота – закрасить указанные клетки и переместиться в конечную клетку.
|
///Основная цель Робота – закрасить указанные клетки и переместиться в конечную клетку.
|
||||||
unit Robot;
|
unit Robot;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit RobotField;
|
unit RobotField;
|
||||||
|
|
||||||
//#savepcu false
|
//#savepcu false
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit RobotTaskMaker;
|
unit RobotTaskMaker;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Sockets;
|
unit Sockets;
|
||||||
|
|
||||||
{$reference 'System.dll'}
|
{$reference 'System.dll'}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Utils;
|
unit Utils;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit vcl;
|
unit vcl;
|
||||||
|
|
||||||
{$apptype windows}
|
{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
///--
|
///--
|
||||||
unit __RedirectIOMode;
|
unit __RedirectIOMode;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
///--
|
///--
|
||||||
unit __RunMode;
|
unit __RunMode;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit ABCButtons;
|
unit ABCButtons;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit ABCHouse;
|
unit ABCHouse;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
|
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
|
||||||
///создания составных графических объектов и многократного их вложения друг в друга.
|
///создания составных графических объектов и многократного их вложения друг в друга.
|
||||||
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров
|
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
|
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
|
||||||
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
|
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
|
||||||
unit ABCSprites;
|
unit ABCSprites;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
unit Arrays;
|
unit Arrays;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
|
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
|
||||||
/// </summary>
|
/// </summary>
|
||||||
unit CRT;
|
unit CRT;
|
||||||
|
|
||||||
// Âåðñèÿ 0.3
|
|
||||||
// Copyright (c) 2006-2007 DarkStar, SSM (parts)
|
|
||||||
|
|
||||||
{$apptype console}
|
{$apptype console}
|
||||||
{$gendoc true}
|
{$gendoc true}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Core;
|
unit Core;
|
||||||
{$reference 'System.Core.dll'}
|
{$reference 'System.Core.dll'}
|
||||||
end.
|
end.
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DMCollect;
|
unit DMCollect;
|
||||||
|
|
||||||
{$reference 'System.Drawing.dll'}
|
{$reference 'System.Drawing.dll'}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DMTaskMaker;
|
unit DMTaskMaker;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit DrawManField;
|
unit DrawManField;
|
||||||
|
|
||||||
//#savepcu false
|
//#savepcu false
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
|
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
|
||||||
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
|
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
|
||||||
unit Drawman;
|
unit Drawman;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit FilesOperations;
|
unit FilesOperations;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit FormsABC;
|
unit FormsABC;
|
||||||
|
|
||||||
{$apptype windows}
|
{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
|
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
|
||||||
unit GraphABC;
|
unit GraphABC;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit GraphABCHelper;
|
unit GraphABCHelper;
|
||||||
|
|
||||||
//{$apptype windows}
|
//{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit IniFile;
|
unit IniFile;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit MPI;
|
unit MPI;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
/// Ñòàíäàðòíûé ìîäóëü
|
/// Ñòàíäàðòíûé ìîäóëü
|
||||||
/// !! System unit
|
/// !! System unit
|
||||||
unit PABCSystem;
|
unit PABCSystem;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
unit PointerTools;
|
unit PointerTools;
|
||||||
|
|
||||||
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);
|
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
|
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
|
||||||
///Основная цель Робота – закрасить указанные клетки и переместиться в конечную клетку.
|
///Основная цель Робота – закрасить указанные клетки и переместиться в конечную клетку.
|
||||||
unit Robot;
|
unit Robot;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit RobotField;
|
unit RobotField;
|
||||||
|
|
||||||
//#savepcu false
|
//#savepcu false
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit RobotTaskMaker;
|
unit RobotTaskMaker;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Sockets;
|
unit Sockets;
|
||||||
|
|
||||||
{$reference 'System.dll'}
|
{$reference 'System.dll'}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit Utils;
|
unit Utils;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
unit vcl;
|
unit vcl;
|
||||||
|
|
||||||
{$apptype windows}
|
{$apptype windows}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
///--
|
///--
|
||||||
unit __RedirectIOMode;
|
unit __RedirectIOMode;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
///--
|
///--
|
||||||
unit __RunMode;
|
unit __RunMode;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue