home *** CD-ROM | disk | FTP | other *** search
- (***********************************************************)
- (* *)
- (* TURBO GRAPHIX version 1.06A *)
- (* *)
- (* Bar chart module *)
- (* Module version 1.06A *)
- (* *)
- (* Copyright (C) 1985 by *)
- (* BORLAND International *)
- (* *)
- (***********************************************************)
-
- procedure DrawHistogram(A :PlotArray; NPoints : integer;
- Hatching : boolean; HatchStyle : integer);
-
- var
- X1, X2, Y2, NPixels, Delta, NDiff, YRef, LineStyleLoc, I : integer;
- Fract, S, Y, YAxis : real;
- DirectModeLoc, Negative : boolean;
- Wtemp : WindowType;
- X1Loc, Y1Loc, X2Loc, Y2Loc : integer;
-
- function Balance : integer;
- begin
- Balance := 0;
- S := S + Fract;
- if S >= 0.0 then
- begin
- S := S - 1.0;
- Balance := 1;
- end;
- end; { Balance }
-
- begin { DrawHistogram }
- if abs(NPoints) >= 2 then
- begin
- X1Loc := X1Glb;
- Y1Loc := Y1Glb;
- X2Loc := X2Glb;
- Y2Loc := Y2Glb;
- LineStyleLoc := LinestyleGlb;
- SetLineStyle(0);
- if AxisGlb then
- begin
- Wtemp := Window[WindowNdxGlb];
- ReDefineWindow(WindowNdxGlb, X1RefGlb + 4 + X1Glb, Y1RefGlb + 6 + Y1Glb,
- X2RefGlb - 2 - X2Glb, Y2RefGlb - 14 - Y2Glb);
- SelectWindow(WindowNdxGlb);
- AxisGlb := true;
- end;
- DirectModeLoc := DirectModeGlb;
- DirectModeGlb := true;
- Negative := NPoints < 0;
- NPoints := abs(NPoints);
- NPixels := (X2RefGlb - X1RefGlb) shl 3 + 7;
- Delta := NPixels div NPoints;
- NDiff := NPixels - Delta * NPoints;
- Fract := NDiff / NPoints;
- S := -Fract;
- X1 := X1RefGlb shl 3;
- YRef := trunc(Y2RefGlb + Y1RefGlb - AyGlb);
- if Negative then
- DrawStraight(X1, X2RefGlb shl 3 + 7, YRef);
- YAxis := Y1RefGlb;
- if BYGlb > 0 then
- YAxis := Y2RefGlb;
- for I := 1 to NPoints do
- begin
- X2 := X1 + Delta + Balance;
- Y := A[I, 2];
- if not Negative then
- Y := abs(Y);
- Y2 := Y2RefGlb + Y1RefGlb - (trunc(AyGlb + ByGlb * Y));
- if not Negative then
- begin
- DrawLine(X1, YAxis, X1, Y2);
- DrawStraight(X1, X2, Y2);
- DrawLine(X2, Y2, X2, YAxis);
- if Hatching then
- if Odd(I) then
- Hatch(X1, Y2, X2, YAxis, HatchStyle)
- else
- Hatch(X1, Y2, X2, YAxis, -HatchStyle);
- end
- else
- begin
- DrawLine(X1, YRef, X1, Y2);
- DrawStraight(X1, X2, Y2);
- DrawLine(X2, Y2, X2, YRef);
- if Hatching then
- if YRef - Y2 < 0 then
- if Odd(I) then
- Hatch(X1, YRef, X2, Y2, HatchStyle)
- else
- Hatch(X1, YRef, X2, Y2, -HatchStyle)
- else
- if Odd(I) then
- Hatch(X1, Y2, X2,YRef, HatchStyle)
- else
- Hatch(X1, Y2, X2, YRef, -HatchStyle);
- end;
- X1 := X2;
- end;
- if AxisGlb then
- begin
- Window[WindowNdxGlb] := Wtemp;
- SelectWindow(WindowNdxGlb);
- X1Glb := X1Loc;
- Y1Glb := Y1Loc;
- X2Glb := X2Loc;
- Y2Glb := Y2Loc;
- AxisGlb := false;
- end;
- DirectModeGlb := DirectModeLoc;
- SetLineStyle(LineStyleLoc);
- end
- else
- Error(19, 4);
- end; { DrawHistogram }