home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l048 / 1.ddi / WINDOWS.SYS < prev   
Encoding:
Text File  |  1986-03-20  |  15.3 KB  |  541 lines

  1. (***********************************************************)
  2. (*                                                         *)
  3. (*                TURBO GRAPHIX version 1.06A              *)
  4. (*                                                         *)
  5. (*                   Windowing system for                  *)
  6. (*                IBM Color/Graphics Adapter               *)
  7. (*                and Hercules Graphics Card               *)
  8. (*                  Module version  1.06A                  *)
  9. (*                                                         *)
  10. (*                  Copyright (C) 1985 by                  *)
  11. (*                  BORLAND International                  *)
  12. (*                                                         *)
  13. (***********************************************************)
  14.  
  15. procedure MoveVer(Delta : integer; FillOut : boolean);
  16. var
  17.   Direction, Outer, FromBase, I, XLen, From, Tu : integer;
  18.  
  19. procedure MoveVer1(VStep : integer);
  20. begin
  21.   XLen := X2RefGlb - X1RefGlb + 1;
  22.   if Direction = -1 then
  23.     for I := Y1RefGlb to Y2RefGlb do
  24.     begin
  25.       if I > 0 then
  26.       begin
  27.         From := BaseAddress(I);
  28.         Tu := BaseAddress(I - VStep);
  29.         Move(Mem[GrafBase:From + X1RefGlb], Mem[GrafBase:Tu + X1RefGlb], XLen);
  30.       end;
  31.     end
  32.   else
  33.     for I := Y2RefGlb downto Y1RefGlb do
  34.       if I < YMaxGlb then
  35.         begin
  36.           From := BaseAddress(I);
  37.           Tu := BaseAddress(I + VStep);
  38.           Move(Mem[GrafBase:From + X1RefGlb], Mem[GrafBase:Tu + X1RefGlb], XLen);
  39.         end;
  40.   if not RamScreenGlb then
  41.     FillOut := false;
  42.   if not FillOut then
  43.     if Direction = -1 then
  44.       for I := Y2RefGlb downto Y2RefGlb - VStep + 1 do
  45.         FillChar(Mem[GrafBase:BaseAddress(I) + X1RefGlb], XLen, not ColorGlb)
  46.     else
  47.       for I := Y1RefGlb to Y1RefGlb + VStep - 1 do
  48.          FillChar(Mem[GrafBase:BaseAddress(I) + X1RefGlb], XLen, not ColorGlb)
  49.   else
  50.     begin
  51.       if GrafBase = HardwareGrafBase then
  52.         FromBase := Seg(ScreenGlb^)
  53.       else
  54.         FromBase:=HardwareGrafBase;
  55.       if Direction = -1 then
  56.         for I := Y2RefGlb downto Y2RefGlb - VStep + 1 do
  57.           Move(Mem[FromBase:BaseAddress(I) + X1RefGlb],
  58.                Mem[GrafBase:BaseAddress(I) + X1RefGlb], XLen)
  59.       else
  60.         for I := Y1RefGlb to Y1RefGlb + VStep - 1 do
  61.           Move(Mem[FromBase:BaseAddress(I) + X1RefGlb],
  62.                Mem[GrafBase:BaseAddress(I) + X1RefGlb], XLen);
  63.     end;
  64.   ReDefineWindow(WindowNdxGlb, X1RefGlb, Y1RefGlb + VStep * Direction,
  65.                  X2RefGlb, Y2RefGlb + VStep * Direction);
  66.   SelectWindow(WindowNdxGlb);
  67. end; { MoveVer1 }
  68.  
  69. begin { MoveVer }
  70.   if Delta <> 0 then
  71.   begin
  72.     Direction := 1;
  73.     if Delta < 0 then
  74.       Direction := -1;
  75.     with Window[WindowNdxGlb] do
  76.     if Drawn then
  77.       if Top then
  78.         Y1RefGlb := Y1RefGlb - HeaderSizeGlb
  79.       else
  80.         Y2RefGlb := Y2RefGlb + HeaderSizeGlb;
  81.     if (Y1RefGlb + Delta < 0) or (Y2RefGlb + Delta > YMaxGlb) then
  82.       Error(23, 7)
  83.     else
  84.       begin
  85.         for Outer := 1 to abs(Delta) div VStepGlb do
  86.           MoveVer1(VStepGlb);
  87.         if abs(Delta) mod VStepGlb <> 0 then
  88.           MoveVer1(abs(Delta) mod VStepGlb);
  89.       end;
  90.     with Window[WindowNdxGlb] do
  91.       if Drawn then
  92.         if Top then
  93.           Y1RefGlb := Y1RefGlb + HeaderSizeGlb
  94.         else
  95.           Y2RefGlb := Y2RefGlb - HeaderSizeGlb;
  96.   end;
  97. end; { MoveVer }
  98.  
  99. procedure MoveHor(Delta : integer; FillOut : boolean);
  100. var
  101.   Direction, Outer, FromBase, I, XLen, Y : integer;
  102. begin
  103.   if Delta <> 0 then
  104.   begin
  105.     Direction := 1;
  106.     if Delta < 0 then
  107.       Direction := -1;
  108.     with Window[WindowNdxGlb] do
  109.     if Drawn then
  110.       if Top then
  111.         Y1RefGlb := Y1RefGlb - HeaderSizeGlb
  112.       else
  113.         Y2RefGlb := Y2RefGlb + HeaderSizeGlb;
  114.     if (X1RefGlb+Delta < 0) or (X2RefGlb+Delta > XMaxGlb) then
  115.       Error(24, 7)
  116.     else
  117.       begin
  118.         for Outer := 1 to abs(Delta) do
  119.         begin
  120.           XLen := X2RefGlb - X1RefGlb + 1;
  121.           for I := Y1RefGlb to Y2RefGlb do
  122.           begin
  123.             Y := BaseAddress(I);
  124.             Move(Mem[GrafBase:Y + X1RefGlb],
  125.                  Mem[GrafBase:Y + X1RefGlb + Direction], XLen);
  126.             if not RamScreenGlb then
  127.               FillOut := false;
  128.             if not FillOut then
  129.               if Direction < 0 then
  130.                 Mem[GrafBase:Y + X2RefGlb] := (not ColorGlb) and $FF
  131.               else
  132.                 { prevents range check errors }
  133.                 Mem[GrafBase:Y + X1RefGlb] := (not ColorGlb) and $FF
  134.               else
  135.                 begin
  136.                   if GrafBase = HardwareGrafBase then
  137.                     FromBase := Seg(ScreenGlb^)
  138.                   else
  139.                     FromBase := HardwareGrafBase;
  140.                   if Direction = -1 then
  141.                     Mem[GrafBase:Y + X2RefGlb] := Mem[FromBase:Y + X2RefGlb]
  142.                   else
  143.                     Mem[GrafBase:Y + X1RefGlb] := Mem[FromBase:Y + X1RefGlb];
  144.                 end;
  145.           end;
  146.           ReDefineWindow(WindowNdxGlb, X1RefGlb + Direction, Y1RefGlb,
  147.                          X2RefGlb + Direction, Y2RefGlb);
  148.           SelectWindow(WindowNdxGlb);
  149.         end;
  150.       end;
  151.       with Window[WindowNdxGlb] do
  152.       if Drawn then
  153.         if Top then
  154.           Y1RefGlb := Y1RefGlb + HeaderSizeGlb
  155.         else
  156.           Y2RefGlb := Y2RefGlb - HeaderSizeGlb;
  157.   end;
  158. end; { MoveHor }
  159.  
  160. procedure CopyWindow(From, Tu : byte; X1, Y1 : integer);
  161. var
  162.   XLen, YLen : integer;
  163.   FromBase, ToBase, I : integer;
  164.  
  165. begin
  166.   if (X1 < 0) or (Y1 < 0) then
  167.     Error(17, 3)
  168.   else
  169.     begin
  170.       with Window[WindowNdxGlb] do
  171.         if Drawn then
  172.           if Top then
  173.             Y1RefGlb := Y1RefGlb - HeaderSizeGlb
  174.           else
  175.             Y2RefGlb := Y2RefGlb + HeaderSizeGlb;
  176.       if From = 2 then
  177.         FromBase := Seg(ScreenGlb^)
  178.       else
  179.         FromBase := HardwareGrafBase;
  180.       if Tu = 2 then
  181.         ToBase := Seg(ScreenGlb^)
  182.       else
  183.         ToBase := HardwareGrafBase;
  184.       XLen := X2RefGlb - X1RefGlb;
  185.       YLen := Y2RefGlb - Y1RefGlb;
  186.       if X1 + XLen > XMaxGlb then
  187.         XLen := XMaxGlb - X1;
  188.       if Y1 + YLen > YMaxGlb then
  189.         YLen := YMaxGlb - Y1;
  190.       XLen := XLen + 1;
  191.       for I := 0 to YLen do
  192.         Move(Mem[FromBase:BaseAddress(Y1RefGlb + I) + X1RefGlb],
  193.              Mem[ToBase:BaseAddress(Y1 + I) + X1], XLen);
  194.       with Window[WindowNdxGlb] do
  195.         if Drawn then
  196.           if Top then
  197.             Y1RefGlb := Y1RefGlb + HeaderSizeGlb
  198.           else
  199.             Y2RefGlb := Y2RefGlb - HeaderSizeGlb;
  200.     end;
  201. end; { CopyWindow }
  202.  
  203. procedure SaveWindow(N : integer; FileName : WrkString);
  204. type
  205.   Sector = array[0..127] of byte;
  206. var
  207.   I, J, SecPtr, Xlen : integer;
  208.   W : WindowType;
  209.   PictureFile : file of Sector;
  210.   Sec1 : array[0..1] of Sector;
  211.  
  212. begin
  213.   W := Window[N];
  214.   Assign(PictureFile, FileName);
  215.   {$I-} Rewrite(PictureFile); {$I+}
  216.   if IOresult <> 0 then
  217.     Error(25, 5)
  218.   else
  219.     begin
  220.       Move(W, Sec1, SizeOf(W));
  221.       SecPtr := SizeOf(W);
  222.       with W do
  223.       begin
  224.         if Drawn then
  225.           if Top then
  226.             Y1 := Y1 - HeaderSizeGlb
  227.           else
  228.             Y2 := Y2 + HeaderSizeGlb;
  229.         Xlen := X2 - X1 + 1;
  230.         for I := Y1 to Y2 do
  231.         begin
  232.           Move(Mem[GrafBase:BaseAddress(I) + X1], Sec1[0, SecPtr], Xlen);
  233.           SecPtr := SecPtr + Xlen;
  234.           if SecPtr > 127 then
  235.           begin
  236.             Write(PictureFile, Sec1[0]);
  237.             Move(Sec1[1], Sec1[0], 128);
  238.             SecPtr := SecPtr - 128;
  239.           end;
  240.         end;
  241.         if SecPtr <> 0 then
  242.           Write(PictureFile, Sec1[0]);
  243.       end;
  244.       Close(PictureFile);
  245.     end;
  246. end; { SaveWindow }
  247.  
  248. procedure LoadWindow(N, Xpos, Ypos : integer; FileName : WrkString);
  249. type
  250.   Sector = array[0..127] of byte;
  251. var
  252.   I, SecPtr, Xlen : integer;
  253.   W : WindowType;
  254.   PictureFile : file of Sector;
  255.   Sec1 : array[0..1] of Sector;
  256.   Second : boolean;
  257.  
  258. begin
  259.   Assign(PictureFile, FileName);
  260.   {$I-} Reset(PictureFile); {$I+}
  261.   if IOresult <> 0 then
  262.     Error(12, 5)
  263.   else
  264.     begin
  265.       Read(PictureFile, Sec1[0]);
  266.       Move(Sec1, W, SizeOf(W));
  267.       SecPtr := SizeOf(W);
  268.       Second := false;
  269.       Window[N] := W;
  270.       with W do
  271.       begin
  272.         if Drawn then
  273.           if Top then
  274.             Y1 := Y1 - HeaderSizeGlb
  275.           else
  276.             Y2 := Y2 + HeaderSizeGlb;
  277.         Xlen := X2 - X1 + 1;
  278.         if Xpos >= 0 then
  279.         begin
  280.           X2 := Xpos + X2 - X1;
  281.           X1 := Xpos;
  282.         end;
  283.         if Ypos >= 0 then
  284.         begin
  285.           Y2 := Ypos + Y2 - Y1;
  286.           Y1 := Ypos;
  287.         end;
  288.         if (X1 < 0) or (Y1 < 0) or (X2 > XMaxGlb) or (Y2 > YMaxGlb) then
  289.           Error(12, 3)
  290.         else
  291.           begin
  292.             for I := Y1 to Y2 do
  293.             begin
  294.               if (SecPtr + Xlen > 127) and
  295.                   not Second and not EOF(PictureFile) then
  296.               begin
  297.                 Read(PictureFile, Sec1[1]);
  298.                 Second := true;
  299.               end;
  300.               Move(Sec1[0, SecPtr], Mem[GrafBase:BaseAddress(I) + X1], Xlen);
  301.               SecPtr := SecPtr + Xlen;
  302.               if SecPtr > 127 then
  303.               begin
  304.                 Move(Sec1[1], Sec1[0], 128);
  305.                 SecPtr := SecPtr - 128;
  306.                 Second := false;
  307.               end;
  308.             end;
  309.           end;
  310.       end;
  311.       Close(PictureFile);
  312.     end;
  313. end; { LoadWindow }
  314.  
  315. function WindowSize(Win : integer) : integer;
  316. var
  317.   Ws : integer;
  318. begin
  319.   Ws := -1;
  320.   if not (Win in [1..MaxWindowsGlb]) then
  321.     Error(13, 2)
  322.   else
  323.     with Window[Win] do
  324.     begin
  325.       Ws := (Y2 - Y1 + 1) * (X2 - X1 + 1);
  326.       if Drawn then
  327.         Ws := Ws + HeaderSizeGlb * (X2 - X1 + 1);
  328.       Ws := (Ws + $03FF) and $FC00;
  329.     end;
  330.   WindowSize := Ws;
  331. end; { WindowSize }
  332.  
  333. procedure ClearWindowStack(Win : integer);
  334. begin
  335.   if not (Win in [1..MaxWindowsGlb]) then
  336.     Error(14, 2)
  337.   else
  338.     with Stack[Win], W do
  339.     begin
  340.       if (Contents <> nil) then
  341.         FreeMem(Contents, Size);
  342.       Contents := nil;
  343.       Size := 0;
  344.     end;
  345. end; { ClearWindowStack }
  346.  
  347. procedure StoreWindow(Win : integer);
  348. var
  349.   I, XLen, Y, Y0, Y9, A : integer;
  350.   M : real;
  351.  
  352. begin
  353.   if not (Win in [1..MaxWindowsGlb]) then
  354.     Error(15, 2)
  355.   else
  356.     begin
  357.       if Stack[Win].Contents <> nil then
  358.         ClearWindowStack(Win);
  359.       M := MaxAvail;
  360.       if M < 0 then
  361.         M := M + 65536.0;
  362.       if WindowSize(Win) > 16.0 * M then
  363.         Error(15, 6)
  364.       else
  365.         with Stack[Win], W do
  366.         begin
  367.           W := Window[Win];
  368.           Size := WindowSize(Win);
  369.           GetMem(Contents, Size);
  370.           with W do
  371.           begin
  372.             Y0 := Y1;
  373.             Y9 := Y2;
  374.             if Drawn then
  375.               if Top then
  376.                 Y0 := Y0 - HeaderSizeGlb
  377.               else
  378.                 Y9 := Y9 + HeaderSizeGlb;
  379.             XLen := X2 - X1 + 1;
  380.             A := 0;
  381.             for I := Y0 to Y9 do
  382.             begin
  383.               Y := BaseAddress(I);
  384.               Move(Mem[GrafBase:Y + X1],
  385.                    Mem[Seg(Contents^):Ofs(Contents^) + A], XLen);
  386.               A := A + XLen;
  387.             end;
  388.           end;
  389.         end;
  390.     end;
  391. end; { StoreWindow }
  392.  
  393. procedure RestoreWindow(Win, DeltaX, DeltaY : integer);
  394. var
  395.   I, XLen, Y, Y0, Y9, A : integer;
  396.   W1 : WindowType;
  397. begin
  398.   if not (Win in [1..MaxWindowsGlb]) then
  399.     Error(16, 2)
  400.   else
  401.     with Stack[abs(Win)] do
  402.     begin
  403.       W1 := W;
  404.       if Contents = nil then
  405.         Error(16, 2)
  406.       else
  407.         with W1 do
  408.         begin
  409.           X1 := X1 + DeltaX;
  410.           X2 := X2 + DeltaX;
  411.           Y1 := Y1 + DeltaY;
  412.           Y2 := Y2 + DeltaY;
  413.           if (X1 >= 0) and (X1 <= XMaxGlb) and (X2 >= 0) and (X2 <= XMaxGlb) and
  414.              (Y1 >= 0) and (Y1 <= YMaxGlb) and (Y2 >= 0) and (Y2 <= YMaxGlb) then
  415.             begin
  416.               XLen := X2 - X1 + 1;
  417.               A := 0;
  418.               Y0 := Y1;
  419.               Y9 := Y2;
  420.               if Drawn then
  421.                 if Top then
  422.                   Y0 := Y0 - HeaderSizeGlb
  423.                 else
  424.                   Y9 := Y9 + HeaderSizeGlb;
  425.               for I := Y0 to Y9 do
  426.               begin
  427.                 Y := BaseAddress(I);
  428.                 with Stack[Win] do
  429.                   Move(Mem[Seg(Contents^):Ofs(Contents^) + A],
  430.                        Mem[GrafBase:Y + X1], XLen);
  431.                 A := A + XLen;
  432.               end;
  433.               Window[Win] := W1;
  434.               if Win < 0 then
  435.                 ClearWindowStack(abs(Win));
  436.               if Win = WindowNdxGlb then
  437.                 SelectWindow(Win);
  438.             end
  439.           else
  440.             Error(16, 3);
  441.         end;
  442.     end;
  443. end; { RestoreWindow }
  444.  
  445. procedure SaveWindowStack(FileName : WrkString);
  446. var
  447.   WindowFile : file;
  448.   PointerFile : file of WindowType;
  449.   I : integer;
  450. begin
  451.   Assign(WindowFile, FileName + '.stk');
  452.   {$I-} Rewrite(WindowFile); {$I+}
  453.   if IOresult <> 0 then
  454.     Error(26, 5)
  455.   else
  456.     begin
  457.       for I := 1 to MaxWindowsGlb do
  458.       with Stack[I], W do
  459.         if Contents <> nil then
  460.           BlockWrite(WindowFile, Contents^, Size shr 7);
  461.       Close(WindowFile);
  462.       Assign(PointerFile, FileName + '.Ptr');
  463.       {$I-} Rewrite(PointerFile); {$I+}
  464.       if IOresult <> 0 then
  465.         Error(26, 5)
  466.       else
  467.         begin
  468.           for I := 1 to MaxWindowsGlb do
  469.             Write(PointerFile, Stack[I].W);
  470.           Close(PointerFile);
  471.         end;
  472.     end;
  473. end; { SaveWindowStack }
  474.  
  475. procedure LoadWindowStack(FileName : WrkString);
  476. var
  477.   WindowFile : file;
  478.   PointerFile : file of WindowType;
  479.   I, Ws : integer;
  480. begin
  481.   Assign(PointerFile, FileName + '.Ptr');
  482.   {$I-} Reset(PointerFile); {$I+}
  483.   if IOresult = 0 then
  484.     begin
  485.       for I := 1 to MaxWindowsGlb do
  486.         Read(PointerFile, Stack[I].W);
  487.       Close(PointerFile);
  488.       Assign(WindowFile, FileName + '.stk');
  489.       {$I-} Reset(WindowFile); {$I+}
  490.       if IOresult = 0 then
  491.         begin
  492.           for I := 1 to MaxWindowsGlb do
  493.           with Stack[I], W do
  494.             if Size <> 0 then
  495.               begin
  496.                 GetMem(Contents, Size);
  497.                 BlockRead(WindowFile, Contents^, Size shr 7);
  498.               end
  499.             else
  500.               Contents := nil;
  501.           Close(WindowFile);
  502.         end
  503.       else
  504.         Error(21, 5);
  505.     end
  506.   else
  507.     Error(21, 5);
  508. end; { LoadWindowStack }
  509.  
  510. procedure ResetWindowStack;
  511. var
  512.   I : integer;
  513. begin
  514.   for I := 1 to MaxWindowsGlb do
  515.     ClearWindowStack(I);
  516. end; { ResetWindowStack }
  517.  
  518. procedure InvertWindow;
  519. var
  520.   I, J, B : integer;
  521. begin
  522.   with Window[WindowNdxGlb] do
  523.     if Drawn then
  524.       if Top then
  525.         Y1RefGlb := Y1RefGlb - HeaderSizeGlb
  526.       else
  527.         Y2RefGlb := Y2RefGlb + HeaderSizeGlb;
  528.    for I := Y1RefGlb to Y2RefGlb do
  529.    begin
  530.      B := BaseAddress(I);
  531.      inline($8B/$86/B/$8B/$1E/X1RefGlb/$8B/$0E/X2RefGlb/$8B/$16/GrafBase/
  532.             $1E/$8E/$DA/$29/$D9/$41/$01/$C3/$F6/$17/$43/$E2/$FB/$1F);
  533.    end;
  534.    with Window[WindowNdxGlb] do
  535.      if Drawn then
  536.        if Top then
  537.          Y1RefGlb := Y1RefGlb + HeaderSizeGlb
  538.        else
  539.          Y2RefGlb := Y2RefGlb - HeaderSizeGlb;
  540. end; { InvertWindow }
  541.