home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / MCUTIL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  9.7 KB  |  417 lines

  1.  
  2. {           Copyright (c) 1985, 87 by Borland International, Inc.            }
  3.  
  4. unit MCUTIL;
  5.  
  6. interface
  7.  
  8. uses Crt, Dos, MCVars;
  9.  
  10. function Pad(S : String; Len : Word) : String;
  11. { Pads a string on the right with spaces to a specified length }
  12.  
  13. function Spaces(Num : Word) : String;
  14. { Returns a string of the specified number of spaces }
  15.  
  16. function UpperCase(S : String) : String;
  17. { Returns a string of all upper case letters }
  18.  
  19. function WordToString(Num, Len : Word) : String;
  20. { Changes a word to a string }
  21.  
  22. function RealToString(Num : Real; Len, Places : Word) : String;
  23. { Changes a real to a string }
  24.  
  25. function AllocText(Col, Row : Word; S : String) : Boolean;
  26. { Allocates space for a text cell }
  27.  
  28. function AllocValue(Col, Row : Word; Amt : Real) : Boolean;
  29. { Allocates space for a value cell }
  30.  
  31. function AllocFormula(Col, Row : Word; S : String; Amt : Real) : Boolean;
  32. { Allocates space for a formula cell }
  33.  
  34. function RowWidth(Row : Word) : Word;
  35. { Returns the width in spaces of row }
  36.  
  37. function FormulaStart(Input : String; Place : Word;
  38.                       var Col, Row, FormLen : Word) : Boolean;
  39. { Returns TRUE if the string is the start of a formula, FALSE otherwise.
  40.    Also returns the column, row, and length of the formula.
  41. }
  42.  
  43. function ColString(Col : Word) : String;
  44. { Changes a column number to a string }
  45.  
  46. function CenterColString(Col : Word) : String;
  47. { Changes a column to a centered string }
  48.  
  49. function TextString(InString : String; Col, FValue : Word;
  50.                     Formatting : Boolean) : String;
  51. { Sets the string representation of text }
  52.  
  53. function ValueString(CPtr : CellPtr; Value : Real; Col, FValue : Word;
  54.                      var Color : Word; Formatting : Boolean) : String;
  55. { Sets the string representation of a value }
  56.  
  57. function CellString(Col, Row : Word; var Color : Word;
  58.                     Formatting : Boolean) : String;
  59. { Creates an output string for the data in the cell in (col, row), and
  60.    also returns the color of the cell }
  61.  
  62. procedure Switch(var Val1, Val2 : Word);
  63. { Swaps the first and second values }
  64.  
  65. procedure InitVars;
  66. { Initializes various global variables }
  67.  
  68. function Exists(FileName : String) : Boolean;
  69. { Returns True if the file FileName exists, False otherwise }
  70.  
  71. implementation
  72.  
  73. {$F+}
  74.  
  75. function HeapFunc(Size : Word) : Word;
  76. { Used to handle heap errors }
  77. begin
  78.   HeapFunc := 1;       { Forces New or GetMem to return a nil pointer }
  79. end; { HeapFunc }
  80.  
  81. {$F-}
  82.  
  83. function Pad;
  84. begin
  85.   if Length(S) < Len then
  86.     FillChar(S[Succ(Length(S))], Len - Length(S), ' ');
  87.   S[0] := Chr(Len);
  88.   Pad := S;
  89. end; { Pad }
  90.  
  91. function Spaces;
  92. var
  93.   S : String;
  94. begin
  95.   S[0] := Chr(Num);
  96.   FillChar(S[1], Num, ' ');
  97.   Spaces := S;
  98. end; { Spaces }
  99.  
  100. function UpperCase;
  101. var
  102.   Counter : Word;
  103. begin
  104.   for Counter := 1 to Length(S) do
  105.     S[Counter] := UpCase(S[Counter]);
  106.   UpperCase := S;
  107. end; { UpperCase }
  108.  
  109. function WordToString;
  110. var
  111.   S : String[5];
  112. begin
  113.   Str(Num:Len, S);
  114.   WordToString := S;
  115. end; { WordToString }
  116.  
  117. function RealToString;
  118. var
  119.   S : String[80];
  120. begin
  121.   Str(Num:Len:Places, S);
  122.   RealToString := S;
  123. end; { RealToString }
  124.  
  125. function AllocText;
  126. var
  127.   CPtr : CellPtr;
  128. begin
  129.   AllocText := False;
  130.   GetMem(CPtr, Length(S) + 3);
  131.   if CPtr = nil then
  132.     Exit;
  133.   CPtr^.Attrib := TXT;
  134.   CPtr^.Error := False;
  135.   CPtr^.T := S;
  136.   Cell[Col, Row] := CPtr;
  137.   AllocText := True;
  138. end; { AllocText }
  139.  
  140. function AllocValue;
  141. var
  142.   CPtr : CellPtr;
  143. begin
  144.   AllocValue := False;
  145.   GetMem(CPtr, SizeOf(Real) + 2);
  146.   if CPtr = nil then
  147.     Exit;
  148.   CPtr^.Attrib := VALUE;
  149.   CPtr^.Error := False;
  150.   CPtr^.Value := Amt;
  151.   Cell[Col, Row] := CPtr;
  152.   AllocValue := True;
  153. end; { AllocValue }
  154.  
  155. function AllocFormula;
  156. var
  157.   CPtr : CellPtr;
  158. begin
  159.   AllocFormula := False;
  160.   GetMem(CPtr, Length(S) + SizeOf(Real) + 3);
  161.   if CPtr = nil then
  162.     Exit;
  163.   CPtr^.Attrib := FORMULA;
  164.   CPtr^.Error := False;
  165.   CPtr^.Formula := S;
  166.   CPtr^.FValue := Amt;
  167.   Cell[Col, Row] := CPtr;
  168.   AllocFormula := True;
  169. end; { AllocFormula }
  170.  
  171. function RowWidth;
  172. begin
  173.   RowWidth := Succ(Trunc(Ln(Row) / Ln(10)));
  174. end; { RowWidth }
  175.  
  176. function FormulaStart;
  177. var
  178.   OldPlace, Len, MaxLen : Word;
  179.   Start : IString;
  180.   NumString : String[10];
  181. begin
  182.   FormulaStart := False;
  183.   OldPlace := Place;
  184.   MaxLen := RowWidth(MAXROWS);
  185.   if not (Input[Place] in LETTERS) then
  186.     Exit;
  187.   Col := Succ(Ord(Input[Place]) - Ord('A'));
  188.   Inc(Place);
  189.   if Input[Place] in LETTERS then
  190.   begin
  191.     Col := Col * 26;
  192.     Col := Succ(Col + Ord(Input[Place]) - Ord('A'));
  193.     Inc(Place);
  194.   end;
  195.   if Col > MAXCOLS then
  196.     Exit;
  197.   Start := Copy(Input, Place, MaxLen);
  198.   Len := 0;
  199.   while (Place <= Length(Input)) and
  200.         (Input[Place] in ['0'..'9']) and (Len < MaxLen) do
  201.   begin
  202.     Inc(Len);
  203.     Inc(Place);
  204.   end;
  205.   if Len = 0 then
  206.     Exit;
  207.   NumString := Copy(Start, 1, Len);
  208.   Val(NumString, Row, Len);
  209.   if Row > MAXROWS then
  210.     Exit;
  211.   FormLen := Place - OldPlace;
  212.   FormulaStart := True;
  213. end; { FormulaStart }
  214.  
  215. function ColString;
  216. begin
  217.   if Col <= 26 then
  218.     ColString := Chr(Pred(Col) + Ord('A'))
  219.   else
  220.     ColString := Chr((Pred(Col) div 26) + Pred(Ord('A'))) +
  221.               Chr((Pred(Col) mod 26) + Ord('A'));
  222. end; { ColString }
  223.  
  224. function CenterColString;
  225. var
  226.   S : String[2];
  227.   Spaces1, Spaces2 : Word;
  228. begin
  229.   S := ColString(Col);
  230.   Spaces1 := (ColWidth[Col] - Length(S)) shr 1;
  231.   Spaces2 := ColWidth[Col] - Length(S) - Spaces1;
  232.   CenterColString := Spaces(Spaces1) + S + Spaces(Spaces2);
  233. end; { CenterColString }
  234.  
  235. function TextString;
  236. var
  237.   OutString : String[80];
  238. begin
  239.   if ((FValue and RJUSTIFY) <> 0) and Formatting then
  240.   begin
  241.     OutString := InString;
  242.     if Length(OutString) < ColWidth[Col] then
  243.     begin
  244.       while Length(OutString) < ColWidth[Col] do
  245.         OutString := ' ' + OutString;
  246.     end
  247.     else
  248.       OutString[0] := Chr(ColWidth[Col]);
  249.   end
  250.   else begin
  251.     if Formatting then
  252.       OutString := Pad(InString, ColWidth[Col])
  253.     else
  254.       OutString := InString;
  255.   end;
  256.   TextString := OutString;
  257. end; { TextString }
  258.  
  259. function ValueString;
  260. var
  261.   VString : String[MAXCOLWIDTH];
  262.   FString : String[3];
  263.   Width, P : Word;
  264. begin
  265.   if Formatting then
  266.   begin
  267.     Str(CPtr^.Value:1:(FValue and 15), VString);
  268.     if (FValue and COMMAS) <> 0 then
  269.     begin
  270.       P := Pos('.', VString);
  271.       if P = 0 then
  272.         P := Succ(Length(VString));
  273.       while P > 4 do
  274.       begin
  275.         P := P - 3;
  276.         if VString[Pred(P)] <> '-' then
  277.           Insert(',', VString, P);
  278.       end;
  279.     end;
  280.     if (FValue and DOLLAR) <> 0 then
  281.     begin
  282.       if VString[1] = '-' then
  283.       begin
  284.         FString := ' $';
  285.         Width := ColWidth[Col] - 2;
  286.       end
  287.       else begin
  288.         FString := ' $ ';
  289.         Width := ColWidth[Col] - 3;
  290.       end;
  291.     end
  292.     else begin
  293.       Width := ColWidth[Col];
  294.       FString := '';
  295.     end;
  296.     if (FValue and RJUSTIFY) <> 0 then
  297.     begin
  298.       if Length(VString) > Width then
  299.         Delete(VString, Succ(Width), Length(VString) - Width)
  300.       else begin
  301.         while Length(VString) < Width do
  302.           VString := ' ' + VString;
  303.       end;
  304.     end
  305.     else
  306.       VString := Pad(VString, Width);
  307.     VString := FString + VString;
  308.   end
  309.   else
  310.     Str(Value:1:MAXPLACES, VString);
  311.   Color := VALUECOLOR;
  312.   ValueString := VString;
  313. end; { ValueString }
  314.  
  315. function CellString;
  316. var
  317.   CPtr : CellPtr;
  318.   OldCol, P, NewCol, FormatValue : Word;
  319.   S : String[80];
  320.   V : Real;
  321. begin
  322.   CPtr := Cell[Col, Row];
  323.   if CPtr = nil then
  324.   begin
  325.     if (not Formatting) or (Format[Col, Row] < OVERWRITE) then
  326.     begin
  327.       S := Spaces(ColWidth[Col]);
  328.       Color := BLANKCOLOR;
  329.     end
  330.     else begin
  331.       NewCol := Col;
  332.       Dec(NewCol);
  333.       while Cell[NewCol, Row] = nil do
  334.         Dec(NewCol);
  335.       OldCol := NewCol;
  336.       P := 1;
  337.       while (NewCol < Col) do
  338.       begin
  339.         Inc(P, ColWidth[NewCol]);
  340.         Inc(NewCol);
  341.       end;
  342.       S := Copy(Cell[OldCol, Row]^.T, P, ColWidth[Col]);
  343.       S := S + Spaces(ColWidth[Col] - Length(S));
  344.       Color := TXTCOLOR;
  345.     end;
  346.   end
  347.   else begin
  348.     FormatValue := Format[Col, Row];
  349.     if CPtr^.Error and (Formatting or (CPtr^.Attrib = VALUE)) then
  350.     begin
  351.       S := Pad(MSGERRORTXT, ColWidth[Col]);
  352.       Color := ERRORCOLOR;
  353.     end
  354.     else begin
  355.       case CPtr^.Attrib of
  356.         TXT : begin
  357.           S := TextString(CPtr^.T, Col, FormatValue, Formatting);
  358.           Color := TXTCOLOR;
  359.         end;
  360.         FORMULA : begin
  361.           if FormDisplay then
  362.           begin
  363.             S := TextString(CPtr^.Formula, Col, FormatValue, Formatting);
  364.             Color := FORMULACOLOR;
  365.           end
  366.           else begin
  367.             V := CPtr^.FValue;
  368.             S := ValueString(CPtr, V, Col, FormatValue, Color, Formatting);
  369.           end;
  370.         end;
  371.         VALUE : begin
  372.           V := CPtr^.Value;
  373.           S := ValueString(CPtr, V, Col, FormatValue, Color, Formatting);
  374.         end;
  375.       end; { case }
  376.     end;
  377.   end;
  378.   CellString := S;
  379. end; { CellString }
  380.  
  381. procedure Switch;
  382. var
  383.   Temp : Word;
  384. begin
  385.   Temp := Val1;
  386.   Val1 := Val2;
  387.   Val2 := Temp;
  388. end; { Switch }
  389.  
  390. procedure InitVars;
  391. begin
  392.   LeftCol := 1;
  393.   TopRow := 1;
  394.   CurCol := 1;
  395.   Currow := 1;
  396.   LastCol := 1;
  397.   LastRow := 1;
  398.   AutoCalc := True;
  399.   FormDisplay := False;
  400.   FillChar(ColWidth, SizeOf(ColWidth), DEFAULTWIDTH);
  401.   FillChar(Cell, SizeOf(Cell), 0);
  402.   FillChar(Format, SizeOf(Format), DEFAULTFORMAT);
  403. end; { InitVars }
  404.  
  405. function Exists;
  406. var
  407.   SR : SearchRec;
  408. begin
  409.   FindFirst(FileName, ReadOnly + Hidden + SysFile, SR);
  410.   Exists := (DosError = 0) and (Pos('?', FileName) = 0) and
  411.             (Pos('*', FileName) = 0);
  412. end; { Exists }
  413.  
  414. begin
  415.   HeapError := @HeapFunc;
  416. end.
  417.