home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / USCX / BSRC_230.ZIP / SB_WRITE.C < prev    next >
C/C++ Source or Header  |  1989-09-05  |  6KB  |  145 lines

  1. /*--------------------------------------------------------------------------*/
  2. /*                                                                          */
  3. /*                                                                          */
  4. /*      ------------         Bit-Bucket Software, Co.                       */
  5. /*      \ 10001101 /         Writers and Distributors of                    */
  6. /*       \ 011110 /          Freely Available<tm> Software.                 */
  7. /*        \ 1011 /                                                          */
  8. /*         ------                                                           */
  9. /*                                                                          */
  10. /*   (C) Copyright 1989, Bit Bucket Software Co., a Delaware Corporation.   */
  11. /*                                                                          */
  12. /*                                                                          */
  13. /*         Routines for writing stuff to windows within BinkleyTerm         */
  14. /*                                                                          */
  15. /*                                                                          */
  16. /*    For complete  details  of the licensing restrictions, please refer    */
  17. /*    to the License  agreement,  which  is published in its entirety in    */
  18. /*    the MAKEFILE and BT.C, and also contained in the file LICENSE.230.    */
  19. /*                                                                          */
  20. /*    USE  OF THIS FILE IS SUBJECT TO THE  RESTRICTIONS CONTAINED IN THE    */
  21. /*    BINKLEYTERM  LICENSING  AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF    */
  22. /*    THIS  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES,  OR IF YOU DO    */
  23. /*    NOT HAVE THESE FILES,  YOU  SHOULD  IMMEDIATELY CONTACT BIT BUCKET    */
  24. /*    SOFTWARE CO.  AT ONE OF THE  ADDRESSES  LISTED BELOW.  IN NO EVENT    */
  25. /*    SHOULD YOU  PROCEED TO USE THIS FILE  WITHOUT HAVING  ACCEPTED THE    */
  26. /*    TERMS  OF  THE  BINKLEYTERM  LICENSING  AGREEMENT,  OR  SUCH OTHER    */
  27. /*    AGREEMENT AS YOU ARE ABLE TO REACH WITH BIT BUCKET SOFTWARE, CO.      */
  28. /*                                                                          */
  29. /*                                                                          */
  30. /* You can contact Bit Bucket Software Co. at any one of the following      */
  31. /* addresses:                                                               */
  32. /*                                                                          */
  33. /* Bit Bucket Software Co.        FidoNet  1:132/101, 1:132/491, 1:141/491  */
  34. /* 427-3 Amherst Street           AlterNet 7:491/0                          */
  35. /* CS2032, Suite 232              BBS-Net  86:2030/1                        */
  36. /* Nashua, NH 03061               Internet f491.n132.z1.fidonet.org         */
  37. /*                                                                          */
  38. /* Please feel free to contact us at any time to share your comments about  */
  39. /* our software and/or licensing policies.                                  */
  40. /*                                                                          */
  41. /*                                                                          */
  42. /*   This module is derived from code developed by Augie Hansen in his      */
  43. /*   book "Proficient C" published by Microsoft Press.  Mr. Hansen was      */
  44. /*   kind enough to give us verbal permission to use his routines, and      */
  45. /*   Bob, Vince and Alan (and all our full screen users) are grateful.      */
  46. /*   If you decide to use this code in some package you are doing, give     */
  47. /*   some thought to going out and buying the book. He deserves that.       */
  48. /*                                                                          */
  49. /*--------------------------------------------------------------------------*/
  50.  
  51.  
  52. #include "sbuf.h"
  53. #include "com.h"
  54. #include "xfer.h"
  55. #include "zmodem.h"
  56. #include "keybd.h"
  57. #include "sched.h"
  58. #include "externs.h"
  59. #include "prototyp.h"
  60.  
  61.  
  62. extern BUFFER Sbuf;
  63. extern CELLP Scrnbuf;
  64.  
  65. int sb_wa (win, attr, n)
  66. REGIONP win;
  67. unsigned char attr;
  68. int n;
  69. {
  70.    int i;
  71.    int row;
  72.    int col;
  73.  
  74.    i = n;
  75.    row = win->r0 + win->row;
  76.    col = win->c0 + win->col;
  77.    while (i--)
  78.       (Scrnbuf + row * SB_COLS + col + i)->b.attr = attr;
  79.  
  80.    /* marked the changed region */
  81.    if (col < Sbuf.lcol[row])
  82.       Sbuf.lcol[row] = col;
  83.    if (col + n > Sbuf.rcol[row])
  84.       Sbuf.rcol[row] = col + n;
  85.  
  86.    Sbuf.flags |= SB_DELTA;
  87.  
  88.    return ((i == 0) ? SB_OK : SB_ERR);
  89. }
  90.  
  91. int sb_wc (win, ch, n)
  92. REGIONP win;
  93. unsigned char ch;
  94. int n;
  95. {
  96.    int i;
  97.    int row;
  98.    int col;
  99.  
  100.    i = n;
  101.    row = win->r0 + win->row;
  102.    col = win->c0 + win->col;
  103.    while (i--)
  104.       (Scrnbuf + row * SB_COLS + col + i)->b.ch = ch;
  105.  
  106.    /* marked the changed region */
  107.    if (col < Sbuf.lcol[row])
  108.       Sbuf.lcol[row] = col;
  109.    if (col + n > Sbuf.rcol[row])
  110.       Sbuf.rcol[row] = col + n;
  111.  
  112.    Sbuf.flags |= SB_DELTA;
  113.  
  114.    return ((i == 0) ? SB_OK : SB_ERR);
  115. }
  116.  
  117. int sb_wca (win, ch, attr, n)
  118. REGIONP win;
  119. unsigned char ch;
  120. unsigned char attr;
  121. int n;
  122. {
  123.    int i;
  124.    int row;
  125.    int col;
  126.    unsigned int ca;
  127.  
  128.    i = n;
  129.    ca = (attr << 8) | ch;
  130.    row = win->r0 + win->row;
  131.    col = win->c0 + win->col;
  132.    while (i--)
  133.       (Scrnbuf + row * SB_COLS + col + i)->cap = ca;
  134.  
  135.    /* marked the changed region */
  136.    if (col < Sbuf.lcol[row])
  137.       Sbuf.lcol[row] = col;
  138.    if (col + n > Sbuf.rcol[row])
  139.       Sbuf.rcol[row] = col + n;
  140.  
  141.    Sbuf.flags |= SB_DELTA;
  142.  
  143.    return ((i == 0) ? SB_OK : SB_ERR);
  144. }
  145.