home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / old / ckermit4e / ckmini.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  17KB  |  651 lines

  1. /* Paul Placeway 3/28/88 - created by moving a bunch of junk out of ckmusr.c */
  2. /*
  3.  * file ckmini.c
  4.  *
  5.  * Module of mackermit containing code for the menus and other MacIntosh
  6.  * things.
  7.  *
  8.  */
  9.  
  10. /*
  11.  Copyright (C) 1985, Trustees of Columbia University in the City of New York.
  12.  Permission is granted to any individual or institution to use, copy, or
  13.  redistribute this software so long as it is not sold for profit, provided this
  14.  copyright notice is retained.
  15. */
  16.  
  17. #include "ckcdeb.h"
  18. #include "ckcker.h"
  19.  
  20. #define    __SEG__ ckmini
  21. #include <desk.h>
  22. #include <files.h>
  23. #include <windows.h>
  24. #include <events.h>
  25. #include <dialogs.h>
  26. #include <fonts.h>
  27. #include <menus.h>
  28. #include <toolutils.h>
  29. #include <serial.h>
  30. #include <textedit.h>
  31. #include <segload.h>
  32. #include <ctype.h>
  33. #include <environs.h>
  34. #include <osutils.h>
  35. /* PWP: put the #include for the script manager here! */
  36.  
  37. #include "ckmdef.h"        /* General Mac defs */
  38. #include "ckmres.h"        /* Mac resource equates */
  39. #include "ckmasm.h"        /* new A8 and A9 traps */
  40.  
  41. /* Global Variables */
  42.  
  43. MenuHandle menus[MAX_MENU + 1];    /* handle on our menus */
  44.  
  45. short innum;            /* Input driver refnum */
  46. short outnum;            /* Output driver refnum */
  47. int protocmd;            /* protocol file cmd, or -1 for */
  48.  /* remote cmds, or 0 if not in */
  49.  /* protocol */
  50.  
  51. char *mybuff;            /* Serial drivers new buffer */
  52. CursHandle watchcurs;        /* the watch cursor */
  53. SerShk controlparam;        /* To change serial driver paramaters */
  54.  
  55. int quit = FALSE;
  56.  
  57. Boolean mcmdactive = TRUE;    /* Enable menu command keys */
  58. Boolean fkeysactive = TRUE;    /* Enable FKEYs */
  59.  
  60. WindowPtr terminalWindow;    /* the terminal window */
  61. extern WindowPtr remoteWindow;    /* the remote command window */
  62.  
  63.  
  64. extern Boolean have_multifinder; /* becomes true if we are running MF */
  65. extern Boolean in_background;    /* becomes TRUE if have_multifinder and
  66.                  * we have recieved a "suspend" event */
  67.  
  68. extern long mf_sleep_time;    /* this is the number of (60Hz) ticks to
  69.                  * sleep before getting a nullEvent (to
  70.                  * flash our cursor) (and input chars from
  71.                  * the serial line)
  72.                  */
  73.  
  74. /* local variables */
  75.  
  76. Boolean have_fourone = FALSE;    /* true if we are running system 4.1 or
  77.                  * better */
  78. Boolean have_ctrl_key = FALSE; /* true if we have an ADB (SE or II) keyboard */
  79.  
  80. Boolean usingRAMdriver = FALSE;    /* true if using the RAM serial driver */
  81.  
  82.  
  83. short takeFRefNum;        /* file reference number of the take file */
  84.  
  85. /****************************************************************************/
  86. /****************************************************************************/
  87. cmdini ()
  88. {
  89.     short vRefNum;
  90.     Str255 volName;
  91.     OSErr err;
  92.  
  93.     GetVol (&volName, &vRefNum);
  94.     err = FSOpen ("Kermit Takefile", vRefNum, &takeFRefNum);
  95.     /* try to open the take file */
  96.     if (err == noErr) {
  97.     tlevel = 1;
  98.     getch ();        /* get first character of take file */
  99.     gettoken ();
  100.     };
  101. }                /* cmdini */
  102.  
  103.  
  104.  
  105. /****************************************************************************/
  106. /* return uppercase for a letter */
  107. /****************************************************************************/
  108. char
  109. CAP (c)
  110. char c;
  111. {
  112.     if (islower (c))
  113.     return (_toupper (c));
  114.     else
  115.     return (c);
  116. }                /* CAP */
  117.  
  118.  
  119. #define TAK_SERV    1
  120. #define TAK_QUIT    2
  121. #define TAK_SEND    3
  122. #define TAK_RECV    4
  123. #define TAK_GET        5
  124. #define TAK_INP        6
  125. #define TAK_OUT        7
  126. #define TAK_UNK 255
  127.  
  128. char *takecmdtab[] = {
  129.     "SERVER",
  130.     "QUIT",
  131.     "SEND",
  132.     "RECEIVE",
  133.     "GET",
  134.     "INPUT"
  135.     "OUTPUT",
  136. };
  137.  
  138. int taketoktab[] = {
  139.     TAK_SERV
  140.     TAK_QUIT
  141.     TAK_SEND
  142.     TAK_RECV
  143.     TAK_GET
  144.     TAK_INP
  145.     TAK_OUT
  146. };
  147.  
  148. #define NUMOFCMDS (sizeof (taketoktab)/sizeof(int))
  149.  
  150. /****************************************************************************/
  151. /* return the token number for a specific take command */
  152. /****************************************************************************/
  153. int
  154. findcmd (cmd)
  155. char *cmd;
  156. {
  157.     int k;
  158.  
  159.     for (k = 0; k < NUMOFCMDS; k++)
  160.     if (strcmp (takecmdtab[k], cmd) == 0)
  161.         return (taketoktab[k]);    /* and return ID */
  162.     return (TAK_UNK);        /* else unknown */
  163. }                /* findcmd */
  164.  
  165.  
  166.  
  167. char ch;
  168.  
  169. /****************************************************************************/
  170. /****************************************************************************/
  171. getch ()
  172. {
  173.     long count;
  174.  
  175.     count = 1;
  176.     if (FSRead (takeFRefNum, &count, &ch) != noErr)
  177.     ch = '\0';
  178. }                /* getch */
  179.  
  180.  
  181.  
  182. #define TOK_CMD        1    /* command id in 'theCmd' */
  183. #define TOK_STR        2    /* string in 'theString' */
  184. #define TOK_NUM        3    /* number in 'theNumber' */
  185. #define TOK_ID        4    /* identifier token */
  186. #define TOK_EOF        5    /* end of file token */
  187. #define TOK_SLS        6    /* ',' */
  188. #define TOK_DOT        7    /* '.' */
  189. #define TOK_UNK    255        /* unknown token */
  190.  
  191. int token;
  192. int theCmd;
  193. char theString[256];
  194. long theNumber;
  195.  
  196. /****************************************************************************/
  197. /****************************************************************************/
  198. gettoken ()
  199. {
  200.     int cmdid;
  201.     char *c;
  202.     char buffer[30];
  203.     Boolean comment;
  204.  
  205.     while ((ch <= ' ') || (ch == '/')) {
  206.     if (ch <= ' ')        /* skip all characters <= blank */
  207.         if (ch == '\0') {    /* except eof character */
  208.         token = TOK_EOF;
  209.         return;
  210.         } else
  211.         getch ();
  212.  
  213.     if (ch == '/') {    /* slash / comment */
  214.         getch ();
  215.  
  216.         if (ch != '*') {
  217.         token = TOK_SLS;
  218.         return;
  219.         }
  220.         getch ();
  221.         comment = TRUE;
  222.         while (comment) {
  223.         if (ch == '\0') {
  224.             token = TOK_EOF;
  225.             return;
  226.         }
  227.         if (ch == '*') {
  228.             getch ();
  229.             if (ch == '/') {
  230.             comment = FALSE;
  231.             getch ();
  232.             }
  233.         } else
  234.             getch ();
  235.         }            /* while (comment) */
  236.  
  237.     }            /* if (ch == '/') */
  238.     }                /* while ((ch <= ' ') || (ch == '/')) */
  239.  
  240.     if (ch == '"') {        /* string */
  241.     token = TOK_STR;
  242.     c = theString;
  243.     getch ();
  244.  
  245.     while (TRUE) {
  246.         if (ch == '"')
  247.         ch = '\0';
  248.  
  249.         if (ch == '\\') {
  250.         getch ();
  251.         if (ch == 'n')
  252.             ch = '\n';
  253.         else if (ch == 'b')
  254.             ch = '\b';
  255.         else if (ch == 't')
  256.             ch = '\t';
  257.         }
  258.         if ((c - theString) < (sizeof (theString) - 1))
  259.         *c++ = ch;
  260.  
  261.         if (ch == '\0') {
  262.         *c = '\0';
  263.         getch ();
  264.         return;
  265.         } else
  266.         getch ();
  267.     }
  268.     }                /* TOK_STR */
  269.     if ((ch >= '0') && (ch <= '9')) {    /* number */
  270.     token = TOK_NUM;
  271.     theNumber = 0;
  272.     getch ();
  273.     return;
  274.     }                /* TOK_NUM */
  275.     ch = CAP (ch);
  276.     if ((ch >= 'A') && (ch <= 'Z')) {    /* command / identifier */
  277.     c = buffer;
  278.     while ((((ch >= 'A') && (ch <= 'Z')) ||    /* get the whole string */
  279.         ((ch >= '0') && (ch <= '9'))) &&
  280.            ((c - buffer) < (sizeof (buffer) - 1))) {
  281.         *c++ = ch;
  282.         getch ();
  283.         ch = CAP (ch);
  284.     }
  285.     *c = '\0';        /* end the buffer with \0 */
  286.  
  287.     cmdid = findcmd (buffer);    /* check for command */
  288.     if (cmdid != TAK_UNK) {
  289.         token = TOK_CMD;
  290.         theCmd = cmdid;    /* return the command id if true */
  291.     } else
  292.         token = TOK_ID;    /* return the identifier id if true */
  293.  
  294.     return;
  295.     }                /* TOK_CMD / TOK_ID */
  296.     switch (ch) {
  297.       case '.':        /* dot */
  298.     token = TOK_DOT;
  299.     break;
  300.  
  301.       default:            /* unknown character */
  302.     token = TOK_UNK;
  303.     }
  304. }                /* gettoken */
  305.  
  306.  
  307.  
  308. /****************************************************************************/
  309. /****************************************************************************/
  310. char
  311. nextcmd ()
  312. {
  313.     if (token == TOK_CMD) {
  314.     switch (theCmd) {
  315.         case TAK_SERV:
  316.         displa = TRUE;
  317.         scrcreate ();    /* create the packet display dialog */
  318.         protocmd = SERV_REMO;    /* run the mac as server */
  319.         gettoken ();
  320.         return ('x');
  321.  
  322.       case TAK_QUIT:
  323.         quit = TRUE;
  324.         FSClose (takeFRefNum);
  325.         return (0);
  326.  
  327.       case TAK_SEND:    /* send a file: local, remote files */
  328.         gettoken ();
  329.         if (token != TOK_STR)
  330.         return (0);
  331.  
  332.         strcpy (filargs.fillcl, theString);    /* file to send */
  333.  
  334.         gettoken ();
  335.         if (token == TOK_STR) {    /* send as */
  336.         strcpy (filargs.filrem, theString);
  337.         gettoken ();
  338.         } else
  339.         zltor (filargs.fillcl, filargs.filrem);
  340.  
  341.         cmarg = filargs.fillcl;
  342.         cmarg2 = filargs.filrem;
  343.  
  344.         nfils = -1;        /* Use cmarg, not cmlist */
  345.         protocmd = SEND_FIL;
  346.         scrcreate ();
  347.         return ('s');    /* return with send state */
  348.  
  349.       case TAK_RECV:
  350.         initfilrecv ();    /* init recv flags */
  351.         protocmd = RECV_FIL;
  352.         scrcreate ();
  353.         gettoken ();
  354.         return ('v');    /* return with recv state */
  355.  
  356.       case TAK_GET:    /* Get from server */
  357.         gettoken ();
  358.         if (token != TOK_STR)
  359.         return (0);
  360.  
  361.         strcpy (cmarg, theString);
  362.         protocmd = GETS_FIL;
  363.         scrcreate ();
  364.         gettoken ();
  365.         return ('r');
  366.  
  367.       default:
  368.         return (0);
  369.     }            /* switch (theCmd) */
  370.  
  371.     } else {
  372.     tlevel = -1;        /* no more commands */
  373.     FSClose (takeFRefNum);
  374.     return (0);
  375.     }
  376.  
  377. }                /* nextcmd */
  378.  
  379.  
  380. /****************************************************************************/
  381. /* init_menus - create the menu bar. */
  382. /****************************************************************************/
  383. setup_menus ()
  384. {
  385.     int i;
  386.  
  387.     for (i = MIN_MENU; i <= MAX_MENU; i++) {    /* For all menus */
  388.     menus[i] = GetMenu (i);    /* Fetch it from resource file */
  389.     InsertMenu (menus[i], 0);    /* Put it on menu line */
  390.     }
  391.  
  392.     AddResMenu (menus[APPL_MENU], 'DRVR');
  393.     DrawMenuBar ();        /* Finish up by displaying the bar */
  394.  
  395.     /*
  396.      * PWP: we do command keys by default ONLY on a keyboard that has a CTRL
  397.      * key
  398.      */
  399.     CheckItem (menus[SETG_MENU], MCDM_SETG, have_ctrl_key);
  400.     mcmdactive = have_ctrl_key;
  401. }                /* setup_menus */
  402.  
  403. Boolean
  404. IsWNEImplemented ()
  405. {
  406.     int err;
  407.     SysEnvRec theWorld;
  408. #define FOURONEVERSION    1040    /* version == (short) (4.1 * 256.) */
  409.  
  410.     /*
  411.      * (from Mac Tech Note #158) We need ot call SysEnvirons to make sure
  412.      * that WaitNextEvent is implemented.  If we are running on 64K ROMs, and
  413.      * RAM HFS is running (trap 0xA060), then GetTrapAddress(0x60) will
  414.      * return a value different from the unimplemented trap since trap 60 is
  415.      * implemented for HFS and the 64K ROM version of GetTrapAddress doesn't
  416.      * differentiate between OS and Tool traps.
  417.      */
  418.  
  419.     /* These are both toolbox traps, hence the 1 */
  420.     err = SysEnvirons (1, &theWorld);    /* we have the glue, so machineType
  421.                      * will allways be filled in */
  422.  
  423.     /* to see if we can use the script manager */
  424.     have_fourone = (theWorld.systemVersion >= FOURONEVERSION);
  425.  
  426.     /* let's hope that Apple gets sane about the CTRL key... */
  427.     have_ctrl_key = (theWorld.keyBoardType == envAExtendKbd) ||
  428.     (theWorld.keyBoardType == envStandADBKbd);
  429.  
  430.     /* is WNE implemented? */
  431.     if (theWorld.machineType < 0)
  432.     return FALSE;        /* we don't know what kind of Mac this is. */
  433.  
  434.     /* "..., 1" 'cause these are tooltraps: */
  435.     if (NGetTrapAddress (num_WaitNextEvent, 1) !=
  436.     NGetTrapAddress (num_UnknownTrap, 1))
  437.     return TRUE;
  438.  
  439.     return FALSE;
  440. }
  441.  
  442. extern hmacrodefs macroshdl;    /* handle to the macro table */
  443. extern modrec modtable[NUMOFMODS];    /* modifier records */
  444. extern RgnHandle dummyRgn;    /* dummy region for ckmcon */
  445. WindowRecord terminalWRec;    /* store window stuff here */
  446.  
  447.  
  448. /****************************************************************************/
  449. /* mac_init - Initialize the macintosh and any window, menu, or other */
  450. /* resources we will be using. */
  451. /****************************************************************************/
  452. mac_init ()
  453. {
  454.     int err;
  455.     int i;
  456.  
  457.     MaxApplZone ();        /* Make appl. heap big as can be */
  458.  
  459.     MoreMasters ();        /* Create some more master pointers */
  460.     err = MemError ();
  461.     if (err != noErr)
  462.     printerr ("Unable to create masters", err);
  463.  
  464.     InitGraf (&qd.thePort);    /* Init the graf port */
  465.     InitFonts ();        /* The fonts */
  466.     InitWindows ();        /* The windows */
  467.  
  468.     /*
  469.      * PWP: we MUST call IsWNEImplemented() BEFORE using have_fourone, or
  470.      * have_ctrl_key (in InitMenus() )
  471.      */
  472.     have_multifinder = IsWNEImplemented ();    /* See Above. */
  473.  
  474.     InitMenus ();
  475.     TEInit ();            /* Init text edit */
  476.     InitDialogs (NILPROC);    /* The dialog manager */
  477.     InitCursor ();        /* start with a nice cursor */
  478.     SetEventMask (everyEvent - keyUpMask);
  479.  
  480. #ifdef COMMENT
  481.     /******** N O T E : *********/
  482.     /* PWP: this has not ever been tested.  I don't know if it will work */
  483.     /****************************/
  484.  
  485.     if (have_fourone) {        /* if we are system 4.1 or later... */
  486.     /* set the key map */
  487.     err = SetScript (smRoman, smScriptKeys, NODEAD_KCHR);
  488.     if (err)
  489.         printerr ("Trouble setting custom keymap (KCHR):", err);
  490.     /* set the icon */
  491.     err = SetScript (smRoman, smScriptIcon, NODEAD_KCHR);
  492.     if (err)
  493.         printerr ("Trouble setting keymap icon (SICN):", err);
  494.     KeyScript (smRoman);
  495.     } else {
  496.     /* do something or other to do the old way */
  497.     }
  498. #endif
  499.  
  500.     watchcurs = GetCursor (watchCursor);    /* the waiting cursor */
  501.  
  502.     mybuff = NewPtr ((long) MYBUFSIZE);    /* Allocate mybuff from the heap */
  503.     if (mybuff == NIL)
  504.     printerr ("Unable to allocate mybuff", 0);
  505.  
  506.     setup_menus ();        /* build our menus */
  507.     ScrDmpEnb = scrdmpenabled;    /* enable FKEYs */
  508.  
  509.     initrcmdw ();        /* init remote cmd window */
  510.     initfilset ();        /* init file settings */
  511.  
  512.     terminalWindow = GetNewWindow (TERMBOXID, &terminalWRec, (WindowPtr) - 1);
  513.     SetPort (terminalWindow);
  514.  
  515.     TextFont (monaco);        /* Monaco font for non-proportional spacing */
  516.     TextSize (9);
  517.  
  518.     FlushEvents (everyEvent, 0);/* clear click ahead */
  519.  
  520.     /* Set up IO drivers */
  521.     innum = -6;
  522.     outnum = -7;
  523.     err = RAMSDOpen (sPortA);
  524.     if (err != noErr) {
  525.         printerr("Can't open RAM serial driver; using the ROM driver without\
  526.  flow control.",0);
  527.     err = OpenDriver (".AIn", &innum);
  528.     if (err != noErr)
  529.         fatal ("macinit could not OpenDriver .AIn: ", err);
  530.     err = OpenDriver (".AOut", &outnum);
  531.     if (err != noErr)
  532.         fatal ("macinit could not OpenDriver .AOut: ", err);
  533.         usingRAMdriver = FALSE;
  534.     } else {
  535.         usingRAMdriver = TRUE;
  536.     }
  537.  
  538.     parity = DEFPAR;
  539.     setserial (innum, outnum, DSPEED, DEFPAR);    /* set speed parity */
  540.  
  541.     if (mybuff != NIL) {
  542.     err = SerSetBuf (innum, mybuff, MYBUFSIZE);
  543.             /* Make driver use larger buff */
  544.     if (err)
  545.         printerr ("Trouble making IO buffer:", err);
  546.     }
  547.     
  548.     /* PWP: .fXOn and .fInX TRUE as per Matthias' note */
  549.     controlparam.fXOn = TRUE;    /* Specify handshake options */
  550.     controlparam.fCTS = FALSE;
  551.     controlparam.xOn = 17;
  552.     controlparam.xOff = 19;
  553.     controlparam.errs = FALSE;
  554.     controlparam.evts = FALSE;
  555.     controlparam.fInX = TRUE;
  556.  
  557.     err = SerHShake (outnum, &controlparam);
  558.     if (err)
  559.     printerr ("Trouble with output handshake: ", err);
  560.     err = SerHShake (innum, &controlparam);
  561.     if (err)
  562.     printerr ("Trouble with input handshake: ", err);
  563.  
  564.     consetup ();        /* Set up for connecting */
  565.     displa = TRUE;        /* Make everything goes to screen */
  566.  
  567.     /* init the macro table */
  568.     macroshdl = (hmacrodefs) NewHandle (MacroBaseSize);
  569.     (*macroshdl)->numOfMacros = 0;
  570.  
  571.     /* clear the prefix strings */
  572.     for (i = 0; i < NUMOFMODS; i++)
  573.     modtable[i].prefix[0] = '\0';
  574.  
  575.     loadkset ();        /* PWP: get our defaults for these */
  576.     loadmset ();
  577.  
  578.     dummyRgn = NewRgn ();
  579. }                /* mac_init */
  580.  
  581.  
  582.  
  583. /****************************************************************************/
  584. /* mac_cleanup() - called before leaving this program to clean up any */
  585. /*                     dangling Mac stuff. */
  586. /* Called by doexit, transfer and zkself. */
  587. /****************************************************************************/
  588. mac_cleanup ()
  589. {
  590.     int err;
  591.  
  592.     ScrDmpEnb = scrdmpenabled;    /* re-enabled screen dumping */
  593.     
  594.     /* PWP: some day, these calls will make it into the real code... */\
  595.     err = KillIO(innum);    /* Kill off IO drivers */
  596.     if (err != noErr)
  597.         printerr("trouble KillIO-ing serial input driver:",err);
  598.     err = KillIO(outnum);    /* Kill off IO drivers */
  599.     if (err != noErr)
  600.         printerr("trouble KillIO-ing serial output driver:",err);
  601.  
  602.     err = SerSetBuf (innum, NULL, 0);    /* Make driver default buffer */
  603.     if (err != noErr)
  604.         printerr("trouble resetting serial IO buffer:",err);
  605.  
  606.     if (usingRAMdriver) {
  607.     err = RAMSDClose (sPortA);
  608.     /* PWP: I don't know why this returns -1 on a Mac II */
  609.     if ((err != noErr) && (err != -1))
  610.             printerr("trouble closing RAM serial driver:",err);
  611.     } else { /* close the old ROM drivers */
  612.     err = CloseDriver (innum);
  613.     if (err != noErr)
  614.             printerr("trouble closing serial input driver:",err);
  615. #ifdef COMMENT
  616. For some reason or other, doing this close on a 64k ROM machine will cause
  617. the mouse to freeze.  Since the input driver is the only one that really
  618. matters, we just close it.
  619.  
  620.     err = CloseDriver (outnum);
  621.     if (err != noErr)
  622.             printerr("trouble closing serial output driver:",err);
  623. #endif COMMENT
  624.     }
  625.  
  626. #ifdef TLOG
  627.     if (tralog)            /* close transaction log if necessary */
  628.     closetlog ();
  629. #endif TLOG
  630.  
  631.     if (seslog)            /* close session log if necessary */
  632.     closeslog ();
  633.  
  634.     DisposeMacros ();        /* dipose all macro strings */
  635.     DisposHandle ((Handle) macroshdl);    /* release the macro table */
  636.  
  637.     DisposeRgn (dummyRgn);
  638. }                /* mac_cleanup */
  639.  
  640.  
  641.  
  642. /****************************************************************************/
  643. /* doexit(status) - exit to shell.  Perhaps we should check for abnormal */
  644. /*                      status codes... */
  645. /****************************************************************************/
  646. doexit (status)
  647. {
  648.     mac_cleanup ();        /* make things tidy */
  649.     ExitToShell ();
  650. }                /* doexit */
  651.