2010-01-25 08:59:44 -05:00
|
|
|
{
|
|
|
|
This file is part of the Mufasa Macro Library (MML)
|
|
|
|
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
|
|
|
|
|
|
|
|
MML 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.
|
|
|
|
|
|
|
|
MML 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 MML. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
See the file COPYING, included in this distribution,
|
|
|
|
for details about the copyright.
|
|
|
|
|
|
|
|
Colour.inc for the Mufasa Macro Library
|
|
|
|
}
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_GetColor(x,y : integer) : TColor; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
Result := CurrThread.Client.IOManager.GetColor(x,y);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_GetColorsWrap(Coords : TPointArray; var Colors: TIntegerArray); extdecl;
|
2010-01-26 14:38:27 -05:00
|
|
|
begin
|
|
|
|
Colors := CurrThread.Client.MFinder.GetColors(coords);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:32:17 -04:00
|
|
|
function ps_GetColors(const Coords : TPointArray) : TIntegerArray; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
result := CurrThread.Client.MFinder.GetColors(coords);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_findcolor(var x, y: integer; color, x1, y1, x2, y2: integer): boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColor(x, y, color, x1, y1, x2, y2);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_findcolortoleranceOptimised(var x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColorToleranceOptimised(x, y, color, x1, y1, x2, y2, tol);
|
|
|
|
end;
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_findcolortolerance(var x, y: integer; color, x1, y1, x2, y2, tol: integer): boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColorTolerance(x, y, color, x1, y1, x2, y2, tol);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_FindColors(var TPA: TPointArray; Color, x1, y1, x2, y2: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
Result := CurrThread.Client.MFinder.FindColors(TPA, color, x1, y1, x2, y2);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_SetColorToleranceSpeed(cts: Integer); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.MFinder.SetToleranceSpeed(cts);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_GetToleranceSpeed: Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.MFinder.GetToleranceSpeed;
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
procedure ps_SetToleranceSpeed2Modifiers(nHue, nSat: Extended); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.MFinder.SetToleranceSpeed2Modifiers(nHue, nSat);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
procedure ps_GetToleranceSpeed2Modifiers(var hMod, sMod: Extended); extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin
|
|
|
|
CurrThread.Client.MFinder.GetToleranceSpeed2Modifiers(hMod, sMod);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_SimilarColors(Col1,Col2,Tol : integer) : boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
Result := CurrThread.Client.MFinder.SimilarColors(Col1,Col2,Tol);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_CountColor(Color, xs, ys, xe, ye: Integer): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.CountColor(color,xs,ys,xe,ye);
|
|
|
|
end;
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_CountColorTolerance(Color, xs, ys, xe, ye, Tolerance: Integer): Integer; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.CountColorTolerance(color,xs,ys,xe,ye,tolerance);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_FindColorsToleranceOptimised(var Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColorsToleranceOptimised(points,color,xs,ys,xe,ye,tolerance);
|
|
|
|
end;
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_FindColorsTolerance(var Points: TPointArray; Color, xs, ys, xe, ye, Tolerance: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColorsTolerance(points,color,xs,ys,xe,ye,tolerance);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_FindColorSpiral(var x, y: Integer; color, xs, ys, xe, ye: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColorSpiral(x,y,color,xs,ys,xe,ye);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_FindColorSpiralTolerance(var x, y: Integer; color, xs, ys, xe, ye,Tol: Integer): Boolean;
|
2010-01-28 18:34:03 -05:00
|
|
|
begin
|
|
|
|
result := CurrThread.Client.MFinder.FindColorSpiralTolerance(x,y,color,xs,ys,xe,ye,tol);
|
|
|
|
end;
|
|
|
|
|
2010-04-18 11:14:19 -04:00
|
|
|
function ps_FindColorsSpiralTolerance(x, y: Integer; var Points: TPointArray; color, xs, ys, xe, ye: Integer; Tolerance: Integer) : boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColorsSpiralTolerance(x,y,Points,color,xs,ys,xe,ye,tolerance);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_FindColoredArea(var x, y: Integer; color, xs, ys, xe, ye: Integer; MinArea: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColoredArea(x,y,color,xs,ys,xe,ye,minarea);
|
|
|
|
end;
|
|
|
|
|
2010-04-07 17:04:25 -04:00
|
|
|
function ps_FindColoredAreaTolerance(var x, y: Integer; Color, xs, ys, xe, ye, MinArea, tol: Integer): Boolean; extdecl;
|
2010-01-25 08:59:44 -05:00
|
|
|
begin;
|
|
|
|
result := CurrThread.Client.MFinder.FindColoredAreaTolerance(x,y,color,xs,ys,xe,ye,minarea,tol);
|
|
|
|
end;
|
|
|
|
|