Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!mit-eddie!genrad!decvax!decwrl!cookie.dec.com!wecker From: wecker@cookie.dec.com.UUCP Newsgroups: comp.sys.amiga Subject: VT100 (V2.5 DBW 870214) Part 1 of 2 Message-ID: <8141@decwrl.DEC.COM> Date: Wed, 18-Feb-87 19:02:18 EST Article-I.D.: decwrl.8141 Posted: Wed Feb 18 19:02:18 1987 Date-Received: Fri, 20-Feb-87 04:46:41 EST Sender: daemon@decwrl.DEC.COM Organization: Digital Equipment Corporation Lines: 2643 # This is a shell archive. # Remove everything above and including the cut line. # Then run the rest of the file through sh. #----cut here-----cut here-----cut here-----cut here----# #!/bin/sh # shar: Shell Archiver # Run the following text with /bin/sh to create: # readme # vt100.doc # makefile # vt100.h # vt100.c # init.c # This archive created: Sun Feb 15 18:07:18 1987 echo shar: extracting readme sed 's/^XX//' << \SHAR_EOF > readme XXThis archive contains a vt100 emulator with KERMIT and XMODEM file XXtransfer protocols by Dave Wecker (V2.5 DBW 870214). XX XXThanks: XX------- XX To everyone who sent in code and suggestions! XX XXReleases: XX--------- XX v2.5 870214 DBW - more additions (see readme file) XX v2.4 861214 DBW - lots of fixes/additions XX v2.3 861101 DBW - minor bug fixes XX v2.2 861012 DBW - more of the same XX v2.1 860915 DBW - new features (see README) XX v2.0 860823 DBW - Major rewrite XX v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes XX v1.0 860712 DBW - First version released XX XXUsage: XX------ XX Please read VT100.DOC for usage information and examples. XX XXRelease Notes: XX-------------- XXv2.5 870214 DBW - more additions (see readme file) XX - All prompting now done through a string requester/gadget. XX NOTE: YOU MUST SELECT THE INPUT STRING OF THE REQUESTER BEFORE XX YOU CAN TYPE A RESPONSE. XX - Local echo mode added (half duplex for Carolyn) XX - BEEP command added to SCRIPT XX - New menu/init/script items: XX CLEAR SCREEN - clears the screen XX ECHO - turns on/off half duplex mode XX WRAP - turns on/off autowrap on long lines XX NUMKEY - turns on/off numeric keypad mode XX APPCUR - turns on/off application cursor mode XX - Rewrote toasc() to use qualifier field (no more getting the XX keyboard "stuck") XX - Fixed locking of directories (should now run under workbench ok) XX - Cleaned up VT100.H to really check includes on compile XX - Setting font explicitly to TOPAZ 8 (no more dumb assumptions) XX XXv2.4 861214 DBW - lots of fixes/additions XX - Beep should now work under Lattice XX - CreatePort now passes longs (as it should always have) XX - Nested comments in KERMIT.C removed XX - Beep volume of 0 (DisplayBeep) now works XX - snum[] declaration in KERMIT.C fixed XX - multi_xfer is now void and return fixed (in kermit) XX - "." can no longer get "stuck" as the break key XX XX - RIGHT-AMIGA-keys have been added for most menu items XX - The ALT key is now an EIGHTth bit shifter XX - Control-@, Control-2, Control-space send the NULL character XX - Control-6 now sends Control-^ XX - Control-- and Control-? now sends Control-_ XX - Cursor application mode ([?1h and [?1l) now work XX - XMODEM now masks the eighth bit if parity is other than NONE XX XXv2.3 861101 DBW - minor bug fixes: XX - added p_wbcolors to allow workbench colors on custom screen XX (In the init file you can specify WBCOLORS to be NO (use color XX definitions in INIT FILE or VT100.H) or YES (use WORKBENCH XX colors for everything)). XX - "$" now sends a kermit-bye (like it says in VT100.DOC). XX - made window/screen heights more reasonable XX - Added ANSI insert line and delete line (L and XX M) to speed up various editors (like emacs). XX NOTE: This is NOT a VT100 sequence (new extension). XX - ctrl-space now also sends a null (along with ^@ and ^`) XX - RAWKEY fixed in WINDOW.C XX - p_wrap fixed in WINDOW.C XX - removed WRDMAX from VT100.H XX - fixed exit with no params in SCRIPT.C XX - fixed parity comparisons in KERMIT.C XX - init file [n+1] changed to [nplus1] to make Lattice happy. XX - cursoron(), cursoroff() changed to one routine cursorflip(). XX - long lines shortened to less than 80 characters (for gateways). XX - blanks following exit (or comments) now work in scripts. XX XXv2.2 861012 DBW - more of the same: XX - The INIT file "exit" can now chain to a script XX - The SCRIPT command "exit" can now chain to another script XX - Hangup menu item now works. XX - Autowrap can now be set from VT100.H, VT100.INIT ([?7h l) XX - Control-G is now handled with an audible beep XX - Script now used "^chr" to send control characters XX - The graphics "box" character (a) was added XX - Control-@ and Control-` now send the NULL character XX - Alternate color for BOLD has been re-instated by popular demand XX - Menus have been cleaned up. XX - Lattice compilation cleaned up. XX - No more wordsize parameter since PARITY takes care of all cases XX - Function keys can now call scripts XX - Double shift keys are now handled correctly. XX - Version has been added to the title bar (for bug reports). XX XXv2.1 860915 DBW - new features / bug fixes XX - Now identifies as a VT100 (including the response to Z) XX - Cursor color now gets read in as hex (instead of decimal) XX - REPORTMOUSE taken out of definitions (not needed) XX - XON/XOFF now being handled by the device driver instead of me XX - Literal escape characters have been replaced with \033 XX - At init time the user can now specify the input BUFFER size XX (typically between 512 and 2048 bytes) depending on baud rate XX - Script files are now case insensitive for commands XX - XMODEM now turns off the driver XON/XOFF during transfers XX - Graphic rendition now done by the OS instead of me. XX - Initialization files are now searched for in S: instead of C: XX - Forward GOTO bug fixed in the script package. XX - Keypad can now be used in both numeric and application mode XX - General purpose cleanup() routine added for all exits. XX - Utility menu added (sendbreak, hangup, change directory). XX NOTE: hangup is not implemented yet. XX - Full wild card support in file transfers (see vt100.doc). XX - Kermit cleaned up with better filename handling (from host). XX - Script now has CD (changed directory) and SB (send break) commands XX - Added Parity and Wordsize choices in VT100.H, VT100.INIT, menu XX and scripts. (Generates parity from a table). XX - Added 8th bit quoting in KERMIT when using 7 bit words (ODD or XX EVEN parity). XX - Break time can be set from VT100.H, VT100.INIT or a script file. XX - Transfer mode (image or CRLF) can now be set from a script file. XX - Control characters in escape sequences now act like a true VT100. XX - F10 now works from init files. XX - Right (or Left) AMIGA with period (".") sends a BREAK to the host XX from the keyboard. XX - XMODEM status kept down to one line for a file transfer. XX XXv2.0 860823 DBW - Major rewrite: XX - Emulator now compiles under either MANX or LATTICE by defining XX the appropriate compiler type in VT100.H. XX - Sped up code to an effective baud rate of (about) 8k. This means XX that clear text at 4800 baud should be no problem. XX - Added XON/XOFF generation so that characters should not get lost XX any more at 9600 baud (when receiving clear text). XX - Got rid of all command line switches and environment variables. XX Instead upon invocation the program searches first for any file XX named on the command line, then looks for VT100.INIT in the XX current directory and finally searches for C:VT100.INIT. XX All parameters can be set in the init file, and a sample VT100.INIT XX is provided in VT100.DOC that shows all possible options. XX - All parameters that are set by VT100.INIT are defined in VT100.H XX (variables starting with "p_"). This allows you to compile your XX own defaults into the code. XX - You can now set the number of lines (for all you EMACS freaks :-). XX On an interlaced screen this gives you upto a 48 line terminal. XX - WORKBENCH colors are NEVER touched. XX - In an attempt to keep the size down, the color palette menu item XX has been removed (current). Code is about 36K in size with a XX run time image (using workbench screen) of about 88k. XX - Many bugs fixed including reverse scrolling with descenders, XX reverse video at end of line, clearing with scrolling regions, XX ... and 20 or more others. XX - File capture now no longer sends the filename to the host. XX - BOLD ([1m) has now been added by using an additional color XX when you specify a depth of 2 (instead of 1) bitplane. XX - UNDERLINE ([4m) has now been added. XX - The handling of remote (host) escape sequences has been completly XX re-written (thanks to Dawn Banks for all the work). XX - Function keys (and shifted function keys) can now be bound to XX arbitrary strings (Jim Ravan gets his macros). See VT100.DOC XX for details. XX - Cursor has no been reduced to the size of a normal character for XX easier readability. XX - XMODEM has been improved (by Steve Drew) to use a timer device XX (for timeouts) and to abort immediately if the user types . XX - KERMIT has been completely re-written and appears to work fine, XX thanks to the efforts of Steve Drew. XX - New menu item allows script file support. Module written by XX Steve Drew. See VT100.DOC for details. XX XXKnown problems: XX--------------- XX none XX XXSuggestions/bug fixes not implemented (as of yet): XX-------------------------------------------------- XX - Custom screen should use a borderless backdrop window XX - Quit from keyboard should be supported (for above) XX - Automatic maximum sizing of window should happen XX - Screen should be resizable XX - AT TIME should be implemented in scripts (besides DELAY) XX - Amiga keys for script execution/abort XX - Alternate execute of script files through the S: directory XX - Command line arguments to allow for scripts XX - Kermit toggle to leave file names alone XX - Kermit should create sub directories (when necessary) XX - Use the system keymap XX - Use a disk font for graphic character set XX - Allow the mouse to be sent to the host (for various EMACSs) XX - Kermit VM/CMS (IBM) protocol support XX XXInstallation: XX------------- XX The files in this archive may be extracted by the bourne shell XX (/bin/sh) or the shar program using the "unshar switch (-u)", XX contact me if you need a copy of this version of shar. XX XX REMEMBER: Set the correct compiler definition in VT100.H XX XXFiles: XX------ XX README - this file XX vt100.doc - documentation for the terminal emulator XX makefile - make file for the emulator (under MANX AZTEC-C) XX vt100.h - include file used by all other modules XX window.c - manager for window and keyboard XX vt100.c - main module, handles menus XX remote.c - handle remote characters (vt100 emulation) XX kermit.c - kermit protocol (to transfer text files on VMS XX select the CRLF option on the transfer mode menu, XX otherwise use image mode). XX init.c - startup code XX xmodem.c - xmodem protocol that understands AMIGA binary and XX text file formats (automatically). XX script.c - script control package XX expand.c - filename expansion (wildcards) and dir setting XX XXContact: XX-------- XXPlease send bugs/comments/suggestions/praise to: XX XX Dave Wecker at ENET: COOKIE::WECKER XX ARPA: wecker%cookie.dec.com@decwrl.dec.com XX USENET: {decvax|decwrl}!cookie.dec.com!wecker XX SNAIL: Dave Wecker XX 115 Palm Springs Drive XX Colorado Springs, CO 80908 SHAR_EOF if test 10253 -ne "`wc -c readme`" then echo shar: error transmitting readme '(should have been 10253 characters)' fi echo shar: extracting vt100.doc sed 's/^XX//' << \SHAR_EOF > vt100.doc XXThis is the documentation file for the VT100 terminal emulator by Dave XXWecker (V2.5 DBW 870214). Comments/suggestions/bugs/problems/praise XXshould be sent to: XX XX Dave Wecker at ENET: COOKIE::WECKER XX ARPA: wecker%cookie.dec.com@decwrl.dec.com XX USENET: {decvax|decwrl}!cookie.dec.com!wecker XX SNAIL: Dave Wecker XX 115 Palm Springs Drive XX Colorado Springs, CO 80908 XX XXMANY pieces of code/suggestions have been sent in.. XX XX thanks to all! XX XXProgram startup: XX---------------- XX 1> vt100 [initfile] XX XX - At startup, the program will search for an initialization XX file to execute. It will first look for the specified XX "initfile", then VT100.INIT (in the current directory) XX and finally S:VT100.INIT. The format for the init file XX is described later in this document. XX XX - The init file controls the setting of initial defaults XX and screen and macro definitions. XX XX - If none of the files (listed above) are found, the XX built-in defaults (defined in VT100.H as variables, XX beginning with "p_") are used. XX XX - All commands are either menu or script based. Scripts XX are described below. XX XX********************************************************************** XXREMEMBER: ALL QUESTIONS WILL BE HANDLED BY A REQUESTER. You are XX required to select the requester before input will be XX directed to it (click on the input line or the DONE XX gadget). XX********************************************************************** XX XXMenus (Commands in parenthesis are keyboard bindings: Right-Amiga-chr): XX----------------------------------------------------------------------- XXFile - file transfers XX Ascii Capture - Begin/end a script of the current session XX Ascii Send - Type a file to the host XX Xmodem Receive (A-V) - Receive a file using XMODEM protocol XX Xmodem Send (A-^) - Send a file using XMODEM protocol XX Kermit Get (A-G) - Receive files from a host KERMIT SERVER XX Kermit Receive (A-R) - Receive files from a host KERMIT XX Kermit Send (A-S) - Send files to a host KERMIT [SERVER] XX Kermit Bye (A-B) - Terminate a host KERMIT SERVER XXComm Setup - Setup communications XX Baud Rate - Set the terminal baud rate XX 300, XX 1200, (A-L) XX 2400, (A-H) XX 4800, XX 9600 XX Parity - Type of parity XX NONE, (A-X) XX MARK, XX SPACE, XX EVEN, (A-E) XX ODD (A-O) XX Xfer Mode XX Image (A-I) - Send files verbatim (for UNIX hosts or XX binary files) XX Text (A-T) - Send CR LF as line terminator and strip XX CR on received files (VMS text). XXScript - Script commands XX Execute file - Start up an asynchronous script file XX Abort Execution - Terminate a script file XXUtility - Utility commands XX Send Break (A-.) - send a break to the host XX Hang Up - close line (not implemented yet) XX Change Dir (A-D) - change the local directory (for transfers) XX Clear Scrn - clear the screen (initial state) XX Echo - turn on/off half duplex mode XX Wrap (A-W) - turn on/off long line wrapping mode XX Num Key (A-K) - turn on/off numeric keypad mode XX App Cur (A-C) - turn on/off application cursor mode XX XXKeypad mapping (in application keypad mode): XX-------------------------------------------- XX XX AMIGA VT100 comments XX ------- ------- --------------------------- XX 0-9 == 0-9 XX . == . XX ENTER == ENTER (basically, flip the bottom XX - == , 2 keys up to get a VT100) XX HELP == - (only free key around) XX f1-f4 == PF1-PF4 (or any rebinding you do) XX arrows == arrows XX XXNote: Right AMIGA key in conjunction with a period (".") XX will send a break to the host. XX XX CTRL in conjunction with an at-sign ("@") a two ("2") or a XX space (" ") will send a NULL to the host. XX XX CTRL in conjunction with a six ("6") will send a CTRL-^ XX CTRL in conjunction with a dash ("-") or question mark ("?") XX will send a CTRL-_ to the host. XX XXInitialization file example: XX---------------------------- XXHere is a (hopefully) self-explanatory VT100.INIT file with all XXoptions used: XX XX##################################################################### XX# XX# VT100 sample initialization file XX# v2.4 861214 DBW - Dave Wecker standard defaults XX# XX# Hash mark at the beginning of a line denotes a comment. XX# White space (space(s) or tab(s)) delimit fields. XX# Case ignored except for function key bindings. XX# XX# All items in this file overide variables of the same name in VT100.H XX# (all variables in vt100.h have a "p_" prepended to them) XX# XX##################################################################### XX# XXBAUD 2400 # Anything after required fields is ignored XXSCREEN CUSTOM # may be CUSTOM or WORKBENCH XXINTERLACE ON # ON for CUSTOM or interlaced workbench XXDEPTH 1 # number of bit planes to use (1 or 2) XXWBCOLORS YES # ignore custom colors and use defaults XXFOREGROUND 950 # Colors are only used on the custom screen XXBACKGROUND 000 # Colors are in hex RGB from 000 to FFF XXBOLD a00 # Color for bold highlighting (in custom) XXCURSOR 00a # Color for cursor (in custom screen) XXLINES 48 # normal <= 24 interlaced <= 48 XXMODE CRLF # IMAGE or CRLF (for KERMIT transfers) XXBUFFER 512 # 512 <= Input buffer size <= 2048 XXPARITY NONE # NONE (= 8 bit), MARK, SPACE, ODD or EVEN XXBREAK 750000 # Length for break key in microseconds XXVOLUME 64 # Beep Volume (0 = Visual Beep) XXWRAP OFF # Auto wrap ON or OFF XXECHO OFF # Full duplex mode in use XXNUMKEY ON # The keypad should be numeric XXAPPCUR ON # Application keypad mode is being used XXKEYSCRIPT 7E # Hex value for script introducer XX# XX# Function bindings (strings to type when any of F1 - F10 are pressed) XX# f = function key XX# F = shifted function key XX# XX# The string specified must be delimited and uses one special char: XX# ^ = control next character XX# ^^ = up arrow XX# XX# Sample control characters: XX# ^[ = escape ^M = carriage return XX# ^J = line feed ^L = form feed XX# XX# If the first character of the string is a script introducer XX# (KEYSCRIPT) then the string is interpreted as a script filename XX# to be executed when the key is pressed. XX# XX# Examples of bindings: XX# XXf1 "^[OP" # f1-f4 = PF1 - PF4 on a VT100 XXf2 "^[OQ" XXf3 "^[OR" XXf4 "^[OS" XX# XX# f5,6,7 = scripts to execute (assuming that KEYSCRIPT = '~' = 0x7E) XX# XXf5 "~df1:vt100_source/dialwork.script" XXf6 "~df1:vt100_source/sendvt100.script" XXf7 "~df1:vt100_source/getpics.script" XX# XXf8 "MAIL^M" # Reads my mail (note embedded ) XXf9 "NOTE^M" # Reads conferences XXF1 "$2400!" # dials the phone to work XXF2 "$bbs1!" # dials the phone to billboard 1 XXF3 "$bbs2!" # dials the phone to billboard 2 XXF4 "$bbs3!" # dials the phone to billboard 3 XX# XX# all done with init, now execute script as startup sequence XX# XXexit df1:vt100_source/dialwork.script XX XXMulti file Xfers: XX----------------- XXThe VT100 emulator now supports multiple file transfers. This is XXspecified by using a comma (",") between file names when using XMODEM XXor KERMIT. (NOTE: host XMODEM's normally CANNOT support multiple file XXtransfers). XX XXWhen specifying a file name to recieve by default the directory path XXis stripped of the filename when sent to the host but is kept for the XXlocal file spec. eg: XX XX receive file: ram:file.txt,df1:newfile.bin,$ XX XXwill ask the server for file.txt and put it in ram:, and get XXnewfile.bin and put it on df1: (see explanation of "$" below). If you XXdo a single file transfer you will get another prompt for the remote XXname e.g.: XX XX receive file: ram:file.txt XX remote file name[file.txt] userdisk1:wantfile.txt XX XXThe same rules apply to sending multiple files therefore if you are XXdoing multi file transfers make sure the host server is connected to XXthe desired directory. XX XXIn addition KERMIT now supports wildcards (* = any number of XXcharacters, ? = any single character). Examples: XX XX send: *.c,*.h,*.doc XX get: *.c,*.h,$ XX XXKERMIT receive is now smart enough to use the host filename so no XXfilename needs to be specified on the AMIGA's side. XX XXScript file operation: XX---------------------- XXThe script file can be invoked by selecting 'execute file' from the XXscript menu. At any time you can abort the script file by selecting XX'Abort Execution'. XX XXDuring the time script file is running the terminal emulation is still XXactive and you may type simulataneous to the script file. This may be XXdesired if your script file is WAITing for a string or is DELAYing for XXa period of time etc. XX XXScript file Commands (case insensitive): XX------------------------------------------------------------ XX# Commented line XX Format: XX # comment may not be on same line as a command. XX Example: XX # this is a comment XX------------------------------------------------------------ XXAPPCUR Set the application cursor mode XX Format: XX APPCUR ON/OFF XX Example: XX APPCUR ON XX------------------------------------------------------------ XXASCII_SEND Send an ascii file to the host. XX Format: XX (same format as CAPTURE) XX------------------------------------------------------------ XXBAUD Set baud rate XX Format: XX BAUD rate Sets the baud rate for send/receive XX Example: XX BAUD 2400 Sets the baud rate at 2400 baud XX------------------------------------------------------------ XXBEEP Beep at the console XX Format: XX BEEP XX Example: XX BEEP XX------------------------------------------------------------ XXBT Set the break time (for an SB command) XX Format: XX BT value Value is in micro-seconds XX Example: XX BT 750000 XX------------------------------------------------------------ XXCAPTURE To start/stop ascii file capture. XX Format: XX CAPTURE file Start ascii capturing XX CAPTURE End ascii capturing XX Example: XX CAPTURE foo.bar Starts capture of file foo.bar XX CAPTURE Ends ascii capture of file foo.bar XX------------------------------------------------------------ XXCD To change the local directory XX Format: XX CD newdir set a new directory for file transfers XX Example: XX CD DF1:foo/bar set the directory as specified XX------------------------------------------------------------ XXDELAY Suspends script file for a specified time XX Format: XX DELAY n Suspends execution for n seconds XX Example: XX DELAY 2 Suspends for 2 seconds XX------------------------------------------------------------ XXECHO Turn on/off local echo XX Format: XX ECHO ON/OFF XX Example: XX ECHO ON Half duplex mode XX------------------------------------------------------------ XXEXIT Ends execution of the current script file. XX Format: XX EXIT Exit the current script XX EXIT VT100 Exit vt100 program XX EXIT newscript Exit this script and start up newscript XX Example: XX EXIT DF1:FOO.BAR Exit the current script and start FOO.BAR XX------------------------------------------------------------ XXGOTO Jumps to a different part of the script file. XX Format: XX GOTO label Jumps to a line beginning with label: XX Jumps may be forward or backward. XX Example: XX FOO: Sets up a label XX GOTO FOO Jumps to FOO XX------------------------------------------------------------ XXKB Send a BYE packet to a host KERMIT server (shut down server). XX Format: XX KB XX------------------------------------------------------------ XXKG Gets files from host. (which is running as a server). XX Format: XX (same format as KS) XX------------------------------------------------------------ XXKR Receives a file from kermit host (not running as server) XX Format: XX (same format as KS) XX------------------------------------------------------------ XXKS Sends files via kermit to the host. XX Format: XX KS file Send one file XX KS file1,file2,... Send multiple files XX KS file1,file2,...,$ Send multiple files and shut down server XX Example: XX KS foo.bar sends foo.bar (note no quoting is used) XX KS foo1,foo2,foo3 sends three files XX KS foo1,foo2,foo3,$ sends three files and shuts down server XX------------------------------------------------------------ XXNUMKEY Numeric keypad mode XX Format: XX NUMKEY ON/OFF XX Example: XX NUMKEY ON Keypad is pure numbers XX------------------------------------------------------------ XXON Peforms a command every time a string is received XX Format: XX ON "string" cmd Execute cmd when string is received. XX Only one ON string may be installed at a XX time. XX XX If cmd is a GOTO and we were previously XX WAITing for a string the WAIT is aborted and XX execution resumes at the new label. XX XX If cmd is not SEND and we were previously XX DELAYing, then the DELAY is aborted and the XX cmd is executed, followed by the next command XX after the DELAY. XX XX If cmd is a SEND and we were previously XX DELAYing, then the DELAY is continued. XX Example: XX ON "LOSS CARRIER" GOTO RESTART XX If modem drops carrier, try to redial XX ON "--more--" SEND " " XX Send a space every time --more-- is received XX------------------------------------------------------------ XXPARITY Sets the parity XX Format: XX PARITY type Set the parity type XX Example: XX PARITY NONE no parity XX PARITY MARK mark parity XX PARITY SPACE space parity XX PARITY ODD odd parity XX PARITY EVEN even parity XX------------------------------------------------------------ XXSEND Sends a string or character to the host. XX Format: XX SEND "string" Sends a string to the host. Beginning and XX ending double quotes (") are required. A XX carat (^) may be used to send control chars. XX Two carats transmits a carat character. XX SEND chr Sends a single character. XX SEND ^chr Sends a single control character. The chr XX is NOT case sensitve XX Example: XX SEND "mail" Send the string mail XX SEND "dir^M" Send the string dir followed by a XX SEND a Send the letter a XX SEND ^C Send a control C XX SEND "abc^^def" Send the string abc^def XX SEND ^^ Send a control-uparrow XX SEND " Send the '"' character XX------------------------------------------------------------ XXSB Sends a break character to the host XX Format: XX SB Note that any pending character to send XX Example: is aborted by this call XX SB XX------------------------------------------------------------ XXTM Set a transfer mode for KERMIT to use XX Format: XX TM type type of transfers to perform XX Example: XX TM IMAGE image mode transfers XX TM CRLF text transfers (VMS Kermit). XX------------------------------------------------------------ XXWAIT Suspends the script file until a certain string is received. XX Format: XX WAIT "string" Same rules for string as SEND XX WAIT Enter an endless wait. Usually used after XX some "ON" commands have been set up. Can XX still aborted via the script menu. XX Example: XX WAIT "User:" Waits for the string User: XX WAIT Waits forever XX------------------------------------------------------------ XXWRAP Set long line wrapping XX Format: XX WRAP ON/OFF XX Example: XX WRAP ON Long lines will wrap XX------------------------------------------------------------ XXXR Receives a file via XMODEM. XX Format: XX (same format as KS) XX------------------------------------------------------------ XXXS Sends a file via XMODEM. XX Format: XX (same format as KS) XX------------------------------------------------------------ XX XX XXScript file examples: XX-------------------- XX################################################################### XX# Script to dial work (dialwork.script) XX# v2.4 861214 DBW XX################################################################### XX# XX# Make sure that we have all the parameters we want XX# XX DELAY 2 XX BAUD 2400 XX PARITY NONE XX TM CRLF XX BT 750000 XX SB XX# XX# First get the modem's attention: XX# XXStart: XX DELAY 1 XX ON "Ready" GOTO Dial XX SEND ^B XX DELAY 2 XX GOTO Start XX# XX# Now dial the 2400 baud line to work: XX# XXDial: XX ON "Attached" GOTO Login XX SEND "$2400!" XX DELAY 30 XX GOTO Start XX# XX# We got attached, so keep hitting return until the Gandalf terminal XX# handler wakes up: XX# XXLogin: XX ON "enter" GOTO Gandalf XX DELAY 1 XX SEND ^M XX GOTO Login XX# XX# Now connect from the Gandalf to the terminal server (ts1): XX# (when it asks for a password I need to type the password XX# manually here) XX# XXGandalf: XX DELAY 2 XX SEND "ts1^M" XX WAIT "class start" XX# XX# Keep sending 's until the LAT prompts for a username: XX# XXWaitLat: XX DELAY 2 XX ON "username>" GOTO Lat XX SEND ^M XX GOTO WaitLat XX# XX# Tell the LAT that it's me, and connect to the "cookie cluster" XX# (my host systems). Tell the cluster my user name. XX# (when it asks for a password I need to type the password XX# manually here) XX# XXLat: XX SEND "wecker^M" XX DELAY 1 XX SEND "connect cookie^M" XX WAIT "Username:" XX SEND "WECKER^M" XX WAIT "at home" XX SEND "^M^M^M" XX# XX# Got through all the LOGIN garbage, so let's do some work. XX# XX WAIT "$ " XX# XX# Now go back to the LAT and connect to my workstation XX# XX SEND "^]connect child^M" XX WAIT "login:" XX SEND "wecker^M" XX WAIT "at home" XX SEND "^M^M^M" XX# XX# Leave us on VMS XX# XX SEND ^^ XX DELAY 2 XX# XX# Go run the next script XX# XX EXIT df1:vt100_source/sendvt100.script XX XX##################################################################### XX# Script to upload the terminal emulator sources (sendvt100.script) XX# v2.4 861214 DBW XX##################################################################### XX# XX# Make sure that we have all the parameters we want XX# XX DELAY 2 XX PARITY NONE XX TM IMAGE XX# XX# Get into the right directory and upload to my U**X workstation XX# XX CD df1:vt100_source XX SEND ^^ XX SEND "cd ~/amiga/vt100^M" XX SEND "rm -f *^M" XX WAIT "% " XX DELAY 2 XX# XX# Send the readme file for the terminal emulator via XMODEM: XX# XX SEND "xmodem -r readme^M" XX DELAY 3 XX XS readme XX WAIT "% " XX# XX# Send the other terminal emulator files via KERMIT: XX# XX DELAY 1 XX SEND "kermit -x^M" XX DELAY 3 XX KS vt100.doc,makefile,vt100.h,*.c XX DELAY 2 XX KB XX WAIT "% " XX# XX# We popped out of server mode, so send the compiled code XX# XX DELAY 1 XX SEND "kermit -i -x^M" XX DELAY 3 XX KS vt100 XX DELAY 2 XX KB XX WAIT "% " XX# XX# Now build the target shar files XX# XX SEND "shar -a readme vt100.doc makefile vt100.h vt100.c init.c " XX SEND "> vt100_24a.shar^M" XX SEND "shar -a script.c remote.c window.c expand.c kermit.c xmodem.c " XX SEND "> vt100_24b.shar^M" XX# XX# Time to pull copies over to VMS XX# XX SEND ^^ XX SEND "swi [wecker.amiga]^M" XX SEND "cop child::" XX SEND " XX SEND "/staff/wecker/amiga/vt100/vt100_24a.shar" XX SEND " XX SEND " []vt100_24a.shar^M" XX WAIT "$ " XX SEND "cop child::" XX SEND " XX SEND "/staff/wecker/amiga/vt100/vt100_24b.shar" XX SEND " XX SEND " []vt100_24b.shar^M" XX WAIT "$ " XX SEND "cop child::" XX SEND " XX SEND "/staff/wecker/amiga/vt100/vt100" XX SEND " XX SEND " []vt100_24.bin^M" XX WAIT "$ " XX# XX# Make them available to the world XX# XX SEND "pub vt100_24*.*^M" XX WAIT "$ " XX# XX# All done so go to the next script XX# XX EXIT df1:vt100_source/getpics.script XX XX################################################################### XX# Script to download images (getpics.script) XX# v2.4 861214 DBW XX################################################################### XX# XX# Make sure that we have all the parameters we want XX# XX DELAY 2 XX PARITY NONE XX TM CRLF XX# XX# Get into the right directory and download XX# XX CD RAY: XX SEND "swi [wecker.render]^M" XX SEND "kermit server^M" XX DELAY 3 XX KG *.img XX DELAY 2 XX KB XX WAIT "$ " XX# XX# Now get out of the emulator XX# XX EXIT VT100 XX SHAR_EOF if test 18734 -ne "`wc -c vt100.doc`" then echo shar: error transmitting vt100.doc '(should have been 18734 characters)' fi echo shar: extracting makefile sed 's/^XX//' << \SHAR_EOF > makefile XX###################################################################### XX# XX# Makefile to build vt100 terminal emulator XX# XX# v2.5 870214 DBW - more additions (see readme file) XX# v2.4 861214 DBW - lots of fixes/additions (see readme file) XX# v2.3 861101 DBW - minor bug fixes XX# v2.2 861012 DBW - more of the same XX# v2.1 860915 DBW - new features (see README) XX# 860823 DBW - Integrated and rewrote lots of code XX# v2.0 860809 DBW - Major release.. LOTS of changes XX# v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes XX# v1.0 860712 DBW - First version released XX# XX# XX# Don't forget to define the right compiler (MANX or LATTICE) in VT100.H XX# XX###################################################################### XX XXOBJS = vt100.o init.o window.o xmodem.o remote.o \ XX kermit.o script.o expand.o XX XXvt100 : vt100.syms $(OBJS) XX ln -v -o vt100 $(OBJS) df0:lib/c.lib XX XXvt100.syms : vt100.h XX cc -A +Hvt100.syms vt100.h XX XXvt100.o : vt100.c XX cc +Ivt100.syms vt100.c XX XXinit.o : init.c XX cc +Ivt100.syms init.c XX XXwindow.o : window.c XX cc +Ivt100.syms window.c XX XXxmodem.o : xmodem.c XX cc +Ivt100.syms xmodem.c XX XXremote.o : remote.c XX cc +Ivt100.syms remote.c XX XXkermit.o : kermit.c XX cc +Ivt100.syms kermit.c XX XXscript.o : script.c XX cc +Ivt100.syms script.c XX XXexpand.o : expand.c XX cc +Ivt100.syms expand.c XX XX SHAR_EOF if test 1280 -ne "`wc -c makefile`" then echo shar: error transmitting makefile '(should have been 1280 characters)' fi echo shar: extracting vt100.h sed 's/^XX//' << \SHAR_EOF > vt100.h XX/********************************************************************* XX * a terminal program that has ascii and xmodem transfer capability XX * XX * v2.5 870214 DBW - more additions (see readme file) XX * v2.4 861214 DBW - lots of fixes/additions (see readme file) XX * v2.3 861101 DBW - minor bug fixes XX * v2.2 861012 DBW - more of the same XX * v2.1 860915 DBW - new features (see README) XX * 860823 DBW - Integrated and rewrote lots of code XX * v2.0 860809 DBW - Major release.. LOTS of changes XX * v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes XX * v1.0 860712 DBW - First version released XX * XX * use esc to abort xmodem transfer XX * XX * written by Michael Mounier XX * new version by Dave Wecker 860621 XX ********************************************************************/ XX XX/*********** ######## define the compiler type here ######## ********/ XX#define LATTICE 0 XX#define MANX 1 XX XX/* compiler directives to fetch the necessary header files */ XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX#include XX XX /* for Lattice you may have to change these with: */ XX#include /* #include and */ XX#include /* #include */ XX XX#include XX#include XX#include XX XX#if MANX XX#include XX#undef NULL XX#define NULL ((void *)0) XX#endif XX XX#define INTUITION_REV 1L XX#define GRAPHICS_REV 1L XX XX/* things for xmodem send and recieve */ XX#define GOODREAD 0 XX#define TIMEOUT 1 XX#define USERABORT 2 XX#define SECSIZ 0x80 XX#define TTIME_SHORT 5 /* number of seconds for short timeout */ XX#define TTIME_LONG 50 /* number of seconds for long timeout */ XX#define TTIME_KERMIT 10 /* number of seconds for KERMIT timeout*/ XX#define BufSize 0x200 /* Text buffer for XMODEM */ XX#define ERRORMAX 10 /* Max errors before abort */ XX#define RETRYMAX 10 /* Maximum retrys before abort */ XX#define SOH 1 /* Start of sector char */ XX#define EOT 4 /* end of transmission char */ XX#define ACK 6 /* acknowledge sector transmission */ XX#define NAK 21 /* error in transmission detected */ XX XX#define FILEMAX 8 /* number of file menu items */ XX#define COMMAX 3 /* number of communication sub menus */ XX#define RSMAX 5 /* speed menu items */ XX#define PARMAX 5 /* parity items */ XX#define XFMAX 2 /* transfer mode items */ XX#define SCRIPTMAX 2 /* script menu items */ XX#define UTILMAX 8 /* utility menu */ XX#define MAXMENU 4 /* total number of menu entries */ XX XX#define FSF_REVERSE 256 /* fake font style to flag INVERSVID mode */ XX XX/* things for script support */ XX XX#define GOTOLABEL 1 XX#define NEXTCOMMAND 0 XX#define ONCOMMAND 2 XX XX#define WAIT_TIMER 2 XX#define WAIT_STRING 1 XX XX/* things for 'beep' support */ XX#define BEEPSIZE 10L XX#define BEEPFREQ 1000L XX#define COLORCLOCK 3579545L XX XXextern struct MsgPort *CreatePort(); XXextern char *malloc(),*strcpy(),*fgets(); XXextern long ftell(); XX XXextern int multi; /* flags multi file transfers */ XXextern int server; XXextern char bufr[BufSize]; XXextern int fd, timeout, ttime; XXextern long bytes_xferred; XXextern char MyDir[60]; XXextern struct FileLock *MyDirLock; XXextern struct IntuitionBase *IntuitionBase; XXextern struct GfxBase *GfxBase; XXextern struct TextAttr myattr; XXextern struct TextFont *myfont; XXextern struct NewScreen NewScreen; XXextern struct NewWindow NewWindow; XXextern struct Screen *myscreen; XXextern struct Window *mywindow; XXextern struct ViewPort *myviewport; XXextern struct RastPort *myrastport; XXextern struct IntuiMessage *NewMessage; XXextern struct Preferences *Prefs; XXextern char InpBuf[80],UndoBuf[80],Prompt[80]; XXextern struct StringInfo mystrinfo; XXextern struct Gadget mystrgad; XXextern struct IntuiText donetxt; XXextern struct Gadget mydonegad; XXextern struct IntuiText mystrtxt; XXextern struct Requester myrequest; XXextern int numreqs; XXextern struct MenuItem FileItem[FILEMAX]; XXextern struct IntuiText FileText[FILEMAX]; XXextern struct MenuItem CommItem[COMMAX]; XXextern struct IntuiText CommText[COMMAX]; XXextern struct MenuItem RSItem[RSMAX]; XXextern struct IntuiText RSText[RSMAX]; XXextern struct MenuItem ParItem[PARMAX]; XXextern struct IntuiText ParText[PARMAX]; XXextern struct MenuItem XFItem[XFMAX]; XXextern struct IntuiText XFText[XFMAX]; XXextern struct MenuItem ScriptItem[SCRIPTMAX]; XXextern struct IntuiText ScriptText[SCRIPTMAX]; XXextern struct MenuItem UtilItem[UTILMAX]; XXextern struct IntuiText UtilText[UTILMAX]; XXextern struct Menu menu[MAXMENU]; XXextern struct timerequest Timer, Script_Timer; XXextern struct MsgPort *Timer_Port, *Script_Timer_Port; XXextern struct IOExtSer *Read_Request; XXextern char *rs_in; XXextern struct IOExtSer *Write_Request; XXextern char rs_out[2]; XXextern int x,y,curmode; XXextern int MINX,MAXX,MINY,MAXY,top,bot,savx,savy; XXextern int savmode,nlmode,alt,savalt,a[2],sa[2]; XXextern int inesc,inctrl,private,badseq,maxcol; XXextern struct IOAudio Audio_Request; XXextern struct MsgPort *Audio_Port; XXextern UBYTE *BeepWave; XXextern UBYTE Audio_AllocMap[4]; XXextern int p_baud,p_screen,p_interlace,p_depth,p_buffer,p_wbcolors; XXextern int p_foreground,p_background,p_bold,p_cursor,p_lines,p_mode; XXextern int p_parity,p_volume,p_wrap,p_echo,p_keyapp,p_curapp; XXextern char p_keyscript; XXextern long p_break; XXextern char *p_f[10],*p_F[10]; XXextern int script_on; XXextern int script_wait; XX XX/* vt100.c */ XXextern int do_send(),do_capture(),cleanup(); XXextern void setserpar(), setserbaud(), setparams(), redoutil(), XX handle_menupick(); XX XX/* init.c */ XXextern void InitDevs(),InitFileItems(),InitCommItems(), XX InitScriptItems(),InitUtilItems(),InitMenu(); XXextern char *InitDefaults(); XX XX/* window.c */ XXextern void req(),emits(),emit(),emitbatch(),cursorflip(); XXextern int toasc(); XX XX/* xmodem.c */ XXextern void sendchar(),sendstring(),sendbreak(),multi_xfer(), XX No_XON(),Do_XON(); XXextern int readchar(),XMODEM_Read_File(),XMODEM_Send_File(); XX XX/* remote.c */ XXextern void doremote(),doindex(),doctrl(),doesc(),doerase(); XX XX/* kermit.c */ XXextern int doksend(), dokreceive(), saybye(); XXextern void encode(), decode(), rpar(), spar(); XX XX/* script.c */ XXextern int script_start(), chk_script(), exit_script(), XX do_script_cmd(); XXextern char *next_wrd(), *tostring(); XXextern void cmd_send(), cmd_wait(), cmd_on(), cmd_goto(), cmd_delay(), XX cmd_done(), cmd_ks(), cmd_kg(), cmd_kr(), cmd_xs(), cmd_xr(), XX cmd_cap(), cmd_as(), cmd_null(), cmd_kb(), cmd_cd(), XX cmd_sb(), cmd_baud(), cmd_word(), cmd_parity(), cmd_bt(), XX cmd_tm(), cmd_beep(), cmd_echo(), cmd_wrap(), XX cmd_numkey(), cmd_appcur(); XX XX XX/* expand.c */ XXextern char **expand(); XXextern int set_dir(), free_expand(); XX SHAR_EOF if test 7004 -ne "`wc -c vt100.h`" then echo shar: error transmitting vt100.h '(should have been 7004 characters)' fi echo shar: extracting vt100.c sed 's/^XX//' << \SHAR_EOF > vt100.c XX/******************************************************************** XX * vt100 terminal emulator with xmodem transfer capability XX * XX * v2.5 870214 DBW - more additions (see readme file) XX * v2.4 861214 DBW - lots of fixes/additions (see readme file) XX * v2.3 861101 DBW - minor bug fixes XX * v2.2 861012 DBW - more of the same XX * v2.1 860915 DBW - new features (see README) XX * 860901 ACS - Added Parity and Word Length and support code XX * 860823 DBW - Integrated and rewrote lots of code XX * v2.0 860809 DBW - Major rewrite XX * v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes XX * v1.0 860712 DBW - First version released XX * XX * use to abort xmodem or kermit transfers XX * XX * written by Michael Mounier XX * new version by Dave Wecker XX *******************************************************************/ XX XX/* all includes defines and globals */ XX#include "vt100.h" XX XX/**************************************************************/ XX/* here are all the global definitions that appear in vt100.h */ XX/**************************************************************/ XX XXchar bufr[BufSize]; XXint fd, timeout = FALSE, ttime; XXint multi = FALSE, server; XXlong bytes_xferred; XXchar MyDir[60]; XXstruct FileLock *MyDirLock = NULL; XXstruct IntuitionBase *IntuitionBase; XXstruct GfxBase *GfxBase; XX XXstruct TextAttr myattr = { XX (STRPTR) "topaz.font", XX 8, XX 0, XX 0}; XXstruct TextFont *myfont = NULL; XXstruct NewScreen NewScreen = { XX 0L,0L,640L,200L,1L, /* left, top, width, height, depth */ XX 0,1,HIRES, /* DetailPen, BlockPen, ViewModes */ XX CUSTOMSCREEN,&myattr, /* Type, Font */ XX (UBYTE *)"VT100", /* Title */ XX NULL,NULL }; /* Gadgets, Bitmap */ XXstruct NewWindow NewWindow = { XX 0,0L,640L,200L, /* left, top, width, height */ XX 0,1, /* detailpen, blockpen */ XX MENUPICK | CLOSEWINDOW | RAWKEY | NEWSIZE | REQCLEAR, XX SMART_REFRESH | ACTIVATE | BORDERLESS | XX WINDOWCLOSE | WINDOWDEPTH | WINDOWDRAG, /* Flags */ XX NULL,NULL, /* FirstGadget, CheckMark */ XX (UBYTE *)"VT100 (v2.5 870214 DBW) Terminal Window", XX NULL, /* set screen after open screen */ XX NULL, /* bitmap */ XX 640L, 200L, 640L, 200L,/* minw, minh, maxw, maxh */ XX CUSTOMSCREEN /* Type */ XX }; XXstruct Screen *myscreen = NULL; /* ptr to applications screen */ XXstruct Window *mywindow = NULL; /* ptr to applications window */ XXstruct ViewPort *myviewport; XXstruct RastPort *myrastport; XXstruct IntuiMessage *NewMessage; /* msg structure for GetMsg() */ XXstruct Preferences *Prefs; /* preferences from GetPrefs() */ XX XX/**** String requester support ******/ XX XXchar InpBuf[80],UndoBuf[80],Prompt[80]; XXstruct StringInfo mystrinfo = { XX (UBYTE *)InpBuf, XX (UBYTE *)UndoBuf, XX 0,80,0,0,0,0, /* initial, max, disp, undo, #chrs, dsp chrs */ XX 0,0,NULL,0L,NULL}; /* left,top,layer,longint,keymap */ XXstruct Gadget mystrgad = { XX NULL,10,12,320,10, /* next,left,top,width,height */ XX GADGHCOMP, /* flags */ XX ENDGADGET,STRGADGET,/* activation, type */ XX NULL,NULL,NULL, /* gad render, sel render, gad text */ XX 0L, /* mutual exclude */ XX (APTR)&mystrinfo, /* special info */ XX 1,NULL}; /* gadget ID, user data */ XXstruct IntuiText donetxt = { XX 1,0,JAM2,0,0, /* front pen, back pen, mode, left, top */ XX &myattr, /* font */ XX (UBYTE *)"DONE", /* question to ask */ XX NULL}; /* next text */ XXstruct Gadget mydonegad = { XX &mystrgad,290,2,40,10,/* next,left,top,width,height */ XX GADGHCOMP, /* flags */ XX RELVERIFY|ENDGADGET,/* activation */ XX BOOLGADGET, /* gadget type */ XX NULL,NULL,&donetxt, /* gad render, sel render, gad text */ XX 0L,NULL,2,NULL}; /* mutual exclude, special, ID, user data */ XXstruct IntuiText mystrtxt = { XX 0,1,JAM2,10,2, /* front pen, back pen, mode, left, top */ XX &myattr, /* font */ XX (UBYTE *)Prompt, /* question to ask */ XX NULL}; /* next text */ XXstruct Requester myrequest = { XX NULL,200,40,340,22, /* older requester, left, top, width, height */ XX 0,0,&mydonegad, /* relleft reltop, gadgets */ XX NULL, /* border */ XX &mystrtxt, /* text */ XX NULL,1,NULL, /* flags, back fill pen, layer */ XX {0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0}, /* pad1 */ XX NULL,NULL, /* image bit map, rquest window */ XX {0,0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0,0, XX 0,0,0,0,0,0,0,0,0} /* pad2 */ XX }; XXint numreqs = 0; /* number of outstanding requestors */ XX XX/***** menu structures *****/ XXstruct MenuItem FileItem[FILEMAX]; XXstruct IntuiText FileText[FILEMAX]; XXstruct MenuItem CommItem[COMMAX]; XXstruct IntuiText CommText[COMMAX]; XXstruct MenuItem RSItem[RSMAX]; XXstruct IntuiText RSText[RSMAX]; XXstruct MenuItem ParItem[PARMAX]; XXstruct IntuiText ParText[PARMAX]; XXstruct MenuItem XFItem[XFMAX]; XXstruct IntuiText XFText[XFMAX]; XXstruct MenuItem ScriptItem[SCRIPTMAX]; XXstruct IntuiText ScriptText[SCRIPTMAX]; XXstruct MenuItem UtilItem[UTILMAX]; XXstruct IntuiText UtilText[UTILMAX]; XXstruct Menu menu[MAXMENU]; XXstruct IOExtSer *Read_Request; XXchar *rs_in; XXstruct IOExtSer *Write_Request; XXchar rs_out[2]; XXstruct timerequest Timer; XXstruct MsgPort *Timer_Port = NULL; XXstruct timerequest Script_Timer; XXstruct MsgPort *Script_Timer_Port = NULL; XXstruct IOAudio Audio_Request; XXstruct MsgPort *Audio_Port = NULL; XXUBYTE *BeepWave; XXUBYTE Audio_AllocMap[4] = { 1, 8, 2, 4 }; XXint x,y,curmode; XXint MINX = 0; XXint MAXX = 632; XXint MINY = 14; XXint MAXY = 198; XXint top = 14; XXint bot = 198; XXint savx = 0; XXint savy = 14; XXint savmode = 0; XXint nlmode = 0; XXint alt = 0; XXint savalt = 0; XXint a[2] = { 0, 0 }; XXint sa[2] = { 0, 0 }; XXint inesc = -1; XXint inctrl = -1; XXint private = 0; XXint badseq = 0; XXint maxcol = 79; XX XX/*************************** defaults *******************************/ XXint p_baud = 2400; /* baud rate */ XXint p_screen = 1; /* 0 = WORKBENCH, 1 = CUSTOM */ XXint p_wbcolors = 1; /* 0 = Custom, 1 = Workbench colors */ XXint p_interlace = 1; /* 0 = no interlace, 1 = interlace */ XXint p_depth = 1; /* number of bit planes (1 or 2) */ XXint p_foreground = 0x950; /* default foreground RGB color */ XXint p_background = 0x000; /* default background RGB color */ XXint p_bold = 0x900; /* default BOLD RGB color */ XXint p_cursor = 0x009; /* default Cursor RGB color */ XXint p_lines = 48; /* number of lines on the screen */ XXint p_mode = 1; /* 0 = image, 1 = CRLF (for kermit) */ XXint p_buffer = 512; /* read buffer size (>= 512 bytes) */ XXint p_parity = 0; /* 0=none,1=mark,2=space,3=even,4=odd */ XXlong p_break = 750000; /* break time (in micro seconds) */ XXint p_volume = 64; /* beep volume (0 = DisplayBeep) */ XXint p_wrap = 0; /* 0 = truncate, 1 = wrap long lines */ XXint p_keyapp = 0; /* 0 = numeric, 1 = application keypad */ XXint p_curapp = 0; /* 0 = cursor, 1 = application cursor */ XXint p_echo = 0; /* 0 = full duplex, 1 = half duplex */ XXchar p_keyscript = 0x7E; /* function key script introducer = ~ */ XXchar *p_f[10] = { /* function key defaults */ XX "\033OP","\033OQ","\033OR","\033OS", XX "f5","f6","f7","f8","f9","f10" }; XX XXchar *p_F[10] = { /* shifted function key defaults */ XX "F1","F2","F3","F4","F5", XX "F6","F7","F8","F9","F10"}; XX XX/* for script file */ XXint script_on; XXint script_wait; XX XX/******************************************************/ XX/* Main Program */ XX/* */ XX/* This is the main body of the program. */ XX/******************************************************/ XX XXchar lookahead[80]; XXFILE *tranr = NULL; XXFILE *trans = NULL; XXint capture,send; XXchar name[80]; XXstruct MsgPort *mySerPort; XX XXmain(argc,argv) XXint argc; XXchar **argv; XX { XX ULONG class; XX unsigned int code, qual; XX int KeepGoing,i,la,dola,actual; XX char c,*ptr; XX XX ptr = InitDefaults(argc,argv); XX InitDevs(); XX InitFileItems(); XX InitCommItems(); XX InitScriptItems(); XX InitUtilItems(); XX InitMenu(); XX SetMenuStrip(mywindow,&menu[0]); XX XX MyDir[0] = '\000'; XX KeepGoing = TRUE; XX capture = FALSE; XX send = FALSE; XX maxcol = MAXX / 8; XX la = 0; XX x = MINX ; XX y = MINY; XX curmode = FS_NORMAL; XX script_on = FALSE; XX script_wait= TRUE; XX SetAPen(mywindow->RPort,1L); XX cursorflip(); XX cursorflip(); XX emit(12); XX mySerPort = Read_Request->IOSer.io_Message.mn_ReplyPort; XX SendIO(Read_Request); XX XX /* see if we had a startup script */ XX if (ptr != NULL) script_start(ptr); XX XX while( KeepGoing ) XX { XX /* wait for window message or serial port message */ XX cursorflip(); XX if (script_wait) /* if script ready dont wait here */ XX Wait( XX (1L << mySerPort->mp_SigBit) | XX (1L << mywindow->UserPort->mp_SigBit) | XX (1L << Script_Timer_Port->mp_SigBit)); XX cursorflip(); XX XX /* do ascii file send */ XX if (send) XX { XX if ((c=getc(trans)) != EOF) { XX if (c == '\n') c = '\r'; XX sendchar(c); XX } XX else { XX fclose(trans); XX req("File Sent","",0); XX send=FALSE; XX } XX } XX XX /* see if there are any characters from the host */ XX if (CheckIO(Read_Request)) { XX WaitIO(Read_Request); XX c = rs_in[0] & 0x7F; XX doremote(c); XX if (script_on) chk_script(c); XX if (capture && c != 10) { XX if (c == 13) c = 10; XX putc(c , tranr); XX } XX Read_Request->IOSer.io_Command = SDCMD_QUERY; XX DoIO(Read_Request); XX Read_Request->IOSer.io_Command = CMD_READ; XX actual = (int)Read_Request->IOSer.io_Actual; XX if (actual > 0) { XX if (inesc < 0 && XX inctrl < 0 && XX a[alt] == 0 && XX capture == FALSE) dola = 1; XX else dola = 0; XX Read_Request->IOSer.io_Length = XX Read_Request->IOSer.io_Actual; XX DoIO(Read_Request); XX Read_Request->IOSer.io_Length = 1; XX XX for (i = 0; i < actual; i++) { XX c=rs_in[i] & 0x7f; XX if (script_on) chk_script(c); XX XX if (dola == 1) { XX if (c >= ' ' && c <= '~' && la < 80) XX lookahead[la++] = c; XX else { XX if (la > 0) { XX emitbatch(la,lookahead); XX la = 0; XX } XX doremote(c); XX dola = 0; XX } XX } XX else { XX doremote(c); XX if (inesc < 0 && XX inctrl < 0 && XX a[alt] == 0 && XX capture == FALSE) dola = 1; XX if (capture && c != 10) { XX if (c == 13) c = 10; XX putc(c , tranr); XX } XX } XX } XX XX /* dump anything left in the lookahead buffer */ XX if (la > 0) { XX emitbatch(la,lookahead); XX la = 0; XX } XX } XX SendIO(Read_Request); XX } XX XX while((NewMessage = XX (struct IntuiMessage *)GetMsg(mywindow->UserPort)) XX != FALSE) { XX class = NewMessage->Class; XX code = NewMessage->Code; XX qual = NewMessage->Qualifier; XX ReplyMsg( NewMessage ); XX switch( class ) XX { XX case REQCLEAR: XX numreqs = 0; XX break; XX XX case CLOSEWINDOW: XX KeepGoing = FALSE; XX break; XX XX case RAWKEY: XX c = toasc(code,qual,0); XX if (p_echo) doremote(c); XX break; XX XX case NEWSIZE: XX emit(12); XX break; XX XX case MENUPICK: XX handle_menupick(class,code); XX break; XX } /* end of switch (class) */ XX } /* end of while ( newmessage )*/ XX XX if (!script_wait || XX (CheckIO(&Script_Timer) && XX script_wait == WAIT_TIMER)) XX do_script_cmd(NEXTCOMMAND); XX } /* end while ( keepgoing ) */ XX XX /* It must be time to quit, so we have to clean XX * up and exit. XX */ XX XX cleanup("",0); XX XX } /* end of main */ XX XX/* cleanup code */ XX XXcleanup(reason, fault) XXchar *reason; XXint fault; XX { XX switch(fault) { XX case 0: /* quitting close everything */ XX ClearMenuStrip( mywindow ); XX CloseDevice(&Audio_Request); XX if (MyDirLock != NULL) UnLock(MyDirLock); XX XX case 8: /* error opening audio */ XX DeletePort(Audio_Port); XX FreeMem(BeepWave,BEEPSIZE); XX CloseDevice(&Timer); XX XX case 7: /* error opening timer */ XX DeletePort(Timer_Port); XX CloseDevice(&Script_Timer); XX DeletePort(Script_Timer_Port); XX XX case 6: /* error opening write device */ XX DeletePort(Write_Request->IOSer.io_Message.mn_ReplyPort); XX FreeMem(Write_Request,(long)sizeof(*Write_Request)); XX CloseDevice(Read_Request); XX XX case 5: /* error opening read device */ XX DeletePort(Read_Request->IOSer.io_Message.mn_ReplyPort); XX FreeMem(Read_Request,(long)sizeof(*Read_Request)); XX XX case 4: /* error opening window */ XX if (myfont != NULL) CloseFont( myfont ); XX if (mywindow != NULL) CloseWindow( mywindow ); XX if (p_screen != 0) CloseScreen( myscreen ); XX XX case 3: /* error opening screen */ XX case 2: /* error opening graphics library */ XX case 1: /* error opening intuition */ XX default: XX if (*reason) puts (reason); XX } XX exit(fault); XX } XX XXdo_capture(file) XXchar *file; XX { XX if (capture == TRUE) XX { XX capture=FALSE; XX fclose(tranr); XX req("End File Capture","",0); XX } XX else XX { XX if (file == NULL) { XX name[0] = '\000'; XX req("Ascii Capture:",name,1); XX } XX else strcpy(name, file); XX if ((tranr=fopen(name,"w")) == 0) { XX capture=FALSE; XX req("Error Opening File","",0); XX return(FALSE); XX } XX capture=TRUE; XX } XX } XX XXdo_send(file) XXchar *file; XX { XX if (send == TRUE) XX { XX send=FALSE; XX fclose(trans); XX req("File Send Cancelled","",0); XX } XX else XX { XX if (file == NULL) { XX name[0] = '\000'; XX req("Ascii Send:",name,1); XX } XX else strcpy(name, file); XX if ((trans=fopen(name,"r")) == 0) { XX send=FALSE; XX req("Error Opening File","",0); XX return(FALSE); XX } XX send=TRUE; XX } XX } XX XXvoid setparams() XX { XX Read_Request->IOSer.io_Command = XX Write_Request->IOSer.io_Command = XX SDCMD_SETPARAMS; XX DoIO(Read_Request); DoIO(Write_Request); XX Read_Request->IOSer.io_Command = CMD_READ; XX SendIO(Read_Request); XX Write_Request->IOSer.io_Command = CMD_WRITE; XX } XX XXvoid hangup () XX { XX AbortIO(Read_Request); XX CloseDevice (Read_Request); XX Timer.tr_time.tv_secs=0L; XX Timer.tr_time.tv_micro=750000L; XX DoIO((char *) &Timer.tr_node); XX OpenDevice (SERIALNAME,NULL,Read_Request,NULL); XX setparams(); XX } XX XXvoid setserbaud(baud, redomenu) XXint baud; XXLONG redomenu; XX { XX AbortIO(Read_Request); XX Write_Request->io_Baud = Read_Request->io_Baud = baud; XX setparams(); XX p_baud = baud; XX if (redomenu) { XX ClearMenuStrip( mywindow ); /* Remove old menu */ XX InitCommItems(); /* Re-do comm menu */ XX SetMenuStrip(mywindow,&menu[0]); /* Re-display the menu */ XX } XX } XX XXvoid redoutil() { XX ClearMenuStrip(mywindow); XX InitUtilItems(); XX SetMenuStrip(mywindow,&menu[0]); XX } XX XXvoid handle_menupick(class, code) XXULONG class; XXunsigned int code; XX { XX unsigned int menunum, itemnum, subnum; XX XX if (code == MENUNULL) return; XX XX menunum = MENUNUM( code ); XX itemnum = ITEMNUM( code ); XX subnum = SUBNUM( code ); XX switch( menunum ) { XX case 0: XX switch( itemnum ) { XX case 0: XX do_capture(NULL); XX break; XX XX case 1: XX do_send(NULL); XX break; XX XX case 2: XX if (p_parity > 0) { XX req("Parity setting prevents this","",0); XX break; XX } XX name[0] = '\000'; XX req("Xmodem Receive:",name,1); XX multi_xfer(name,XMODEM_Read_File,0); XX break; XX XX case 3: XX if (p_parity > 0) { XX req("Parity setting prevents this","",0); XX break; XX } XX name[0] = '\000'; XX req("Xmodem Send:",name,1); XX multi_xfer(name,XMODEM_Send_File,1); XX break; XX XX case 4: XX server = TRUE; XX name[0] = '\000'; XX req("Kermit GET remote file(s):",name,1); XX multi_xfer(name,dokreceive,0); XX break; XX XX case 5: XX multi_xfer("",dokreceive,0); XX break; XX XX case 6: XX server = TRUE; XX name[0] = '\000'; XX req("Kermit Send local name:",name,1); XX multi_xfer(name,doksend,1); XX break; XX XX case 7: XX saybye(); XX break; XX } XX break; XX XX case 1: XX switch( itemnum ) { XX case 0: XX switch( subnum ) { XX case 0: XX setserbaud(300, FALSE); XX break; XX XX case 1: XX setserbaud(1200, FALSE); XX break; XX XX case 2: XX setserbaud(2400, FALSE); XX break; XX XX case 3: XX setserbaud(4800, FALSE); XX break; XX XX case 4: XX setserbaud(9600, FALSE); XX break; XX } XX break; XX XX case 1: XX /* Set Parity */ XX p_parity = subnum; XX break; XX XX case 2: XX /* set transfer mode */ XX p_mode = subnum; XX break; XX } XX break; XX XX case 2: XX if (!itemnum && !script_on) { XX name[0] = '\000'; XX req("Script file name:",name,1); XX script_start(name); XX } XX if (itemnum && script_on) exit_script(); XX break; XX XX case 3: XX switch( itemnum ) { XX case 0: XX sendbreak(); XX break; XX XX case 1: XX hangup(); XX break; XX XX case 2: XX strcpy(name,MyDir); XX req("Directory:",name,1); XX set_dir(name); XX break; XX XX case 3: XX top = MINY; bot = MAXY; savx = MINX; savy = MINY; XX curmode = FS_NORMAL; inesc = -1; XX a[0] = 0; a[1] = 0; sa[0] = 0; sa[1] = 0; XX redoutil(); XX emit(12); XX break; XX XX case 4: XX if (p_echo) p_echo = 0; XX else p_echo = 1; XX redoutil(); XX break; XX XX case 5: XX if (p_wrap) p_wrap = 0; XX else p_wrap = 1; XX redoutil(); XX break; XX XX case 6: XX if (p_keyapp) p_keyapp = 0; XX else p_keyapp = 1; XX redoutil(); XX break; XX XX case 7: XX if (p_curapp) p_curapp = 0; XX else p_curapp = 1; XX redoutil(); XX break; XX } XX XX break; XX } /* end of switch ( menunum ) */ XX } XX SHAR_EOF if test 17559 -ne "`wc -c vt100.c`" then echo shar: error transmitting vt100.c '(should have been 17559 characters)' fi echo shar: extracting init.c sed 's/^XX//' << \SHAR_EOF > init.c XX/*************************************************************** XX * vt100 - terminal emulator - initialization XX * XX * v2.5 870214 DBW - more additions (see readme file) XX * v2.4 861214 DBW - lots of fixes/additions (see readme file) XX * v2.3 861101 DBW - minor bug fixes XX * v2.2 861012 DBW - more of the same XX * v2.1 860915 DBW - new features (see README) XX * 860901 ACS - Added Parity and Word Length and support code XX * 860823 DBW - Integrated and rewrote lots of code XX * v2.0 860809 DBW - Major rewrite XX * v1.1 860720 DBW - Switches, 80 cols, colors, bug fixes XX * v1.0 860712 DBW - First version released XX * XX ***************************************************************/ XX XX#include "vt100.h" XX XXchar line[256]; XXstatic char cmds[] = "V^GRSBLHXEOIT.DWKC"; XX XXchar *InitDefaults(argc,argv) XXint argc; XXchar **argv; XX { XX FILE *fd; XX char scr[32],delim,macro[256],c0,*ptr,*ptr2; XX int i,j,k; XX long li; XX XX if (((argc > 1) && (fd=fopen(argv[1],"r")) != 0) || XX (fd=fopen("vt100.init","r")) != 0 || XX (fd=fopen("s:vt100.init","r")) != 0) { XX while (fgets(line,256,fd) != 0) { XX if ((c0 = line[0]) == '#') continue; XX if ((c0|' ') == 'e' && (line[1]|' ') == 'x') break; XX switch (c0|' ') { XX XX case 'a': XX /*application cursor*/ XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[1]|' ') == 'n') p_curapp = 1; XX else p_curapp = 0; XX } XX break; XX XX case 'b': XX if ((line[1]|' ') == 'o') { XX /* bold color */ XX if (sscanf(line,"%s %x",scr,&i) == 2) p_bold = i; XX break; XX } XX if ((line[1]|' ') == 'u') { XX /* buffer size */ XX if (sscanf(line,"%s %d",scr,&i) == 2) p_buffer = i; XX if (p_buffer < 512) p_buffer = 512; XX break; XX } XX if ((line[1]|' ') == 'r') { XX /* break time */ XX if (sscanf(line,"%s %ld",scr,&li) == 2) p_break = li; XX break; XX } XX if ((line[1]|' ') != 'a') break; XX switch(line[2]|' ') { XX /* baud rate */ XX case 'u': XX if (sscanf(line,"%s %d",scr,&i) == 2) XX switch (i) { XX case 300: XX case 1200: XX case 2400: XX case 4800: XX case 9600: p_baud = i; break; XX } XX break; XX XX /* background */ XX case 'c': XX if (sscanf(line,"%s %x",scr,&i) == 2) p_background = i; XX break; XX } XX break; XX XX /* cursor color */ XX case 'c': XX if (sscanf(line,"%s %x",scr,&i) == 2) p_cursor = i; XX break; XX XX /* screen depth */ XX case 'd': XX if (sscanf(line,"%s %d",scr,&i) == 2) p_depth = i; XX break; XX XX /* echo mode (half duplex) */ XX case 'e': XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[1]|' ') == 'n') p_echo = 1; XX else p_echo = 0; XX } XX break; XX XX case 'f': XX switch (line[1]|' ') { XX XX /* foreground color */ XX case 'o': XX if (sscanf(line,"%s %x",scr,&i) == 2) p_foreground = i; XX break; XX XX /* function key */ XX default: XX if (sscanf(&line[1],"%d",&i) != 1) break; XX if (i < 1 || i > 10) break; XX delim = 0; XX for (j=(i==10?3:2); line[j] != 0 && XX (line[j] == ' ' || line[j] == '\t'); j++) ; XX if (line[j] == 0) { XX if (c0 == 'f') p_f[i-1] = NULL; XX else p_F[i-1] = NULL; XX break; XX } XX delim = line[j]; XX k = 0; XX macro[0] = 0; XX while (line[++j] != delim) { XX if (line[j] == 0) { XX if (fgets(line,256,fd) == 0) { XX line[0] = delim; XX line[1] = 0; XX } XX j = -1; XX continue; XX } XX if (line[j] == '^' && line[++j] != '^') XX macro[k++] = (line[j]|' ') - 0x60; XX else if (line[j] != '\n') macro[k++] = line[j]; XX macro[k] = 0; XX } XX ptr = malloc(k+1); XX if (c0 == 'f') p_f[i-1] = ptr; XX else p_F[i-1] = ptr; XX strcpy(ptr,macro); XX break; XX } XX break; XX XX /* interlace type */ XX case 'i': XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[1]|' ') == 'n') p_interlace = 1; XX else p_interlace = 0; XX } XX break; XX XX case 'k': XX /*keyscript*/ XX if (sscanf(line,"%s %x",scr,&i) == 2) XX p_keyscript = i & 0x7F; XX break; XX XX /* number of lines */ XX case 'l': XX if (sscanf(line,"%s %d",scr,&i) == 2) p_lines = i; XX break; XX XX case 'm': XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[0]|' ') == 'i') p_mode = 0; XX else p_mode = 1; XX } XX break; XX XX case 'n': XX /*numeric keypad*/ XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[1]|' ') == 'n') p_keyapp = 0; XX else p_keyapp = 1; XX } XX break; XX XX case 'p': /*parity*/ XX if (sscanf(line,"%s %s",scr,scr) == 2) XX switch(*scr|' ') { XX case 'n': p_parity = 0; break; XX case 'm': p_parity = 1; break; XX case 's': p_parity = 2; break; XX case 'e': p_parity = 3; break; XX case 'o': p_parity = 4; break; XX } XX break; XX XX /* screen type */ XX case 's': XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[0]|' ') == 'w') p_screen = 0; XX else p_screen = 1; XX } XX break; XX XX case 'v': /*volume*/ XX if (sscanf(line,"%s %d",scr,&i) == 2) XX if (i >= 0) p_volume = i; XX break; XX XX case 'w': XX /*wrap*/ XX if ((line[1]|' ') == 'r') { XX if (sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[1]|' ') == 'n') p_wrap = 1; XX else p_wrap = 0; XX } XX } XX XX /* workbench or custom colors */ XX else if ((line[1]|' ') == 'b' && XX sscanf(line,"%s %s",scr,scr) == 2) { XX if ((scr[0]|' ') == 'n') p_wbcolors = 0; XX else p_wbcolors = 1; XX } XX break; XX } XX } XX fclose(fd); XX } XX /* Now set up all the screen info as necessary */ XX if (p_interlace == 0) { XX if (p_lines > 24) p_lines = 24; XX MINY = 14; XX NewWindow.Height = (long)((p_lines*8)+8); XX } XX else { XX if (p_lines > 48) p_lines = 48; XX MINY = 16; XX NewScreen.ViewModes |= LACE; XX NewWindow.Height = (long)((p_lines*8)+10); XX } XX NewWindow.MinHeight = NewWindow.Height; XX NewWindow.MaxHeight = NewWindow.Height; XX NewWindow.TopEdge = 0L; XX MAXY = ((p_lines-1)*8) + MINY; XX top = MINY; XX bot = MAXY; XX savx = MINX; XX savy = MINY; XX if (p_screen == 1) { XX if (p_depth > 2) p_depth = 2; XX if (p_depth < 1) p_depth = 1; XX NewScreen.Depth = (long)p_depth; XX NewScreen.Height = (long)((p_lines*8)+16); XX if (p_interlace == 1) XX NewScreen.TopEdge = (long)(400 - NewScreen.Height); XX else XX NewScreen.TopEdge = (long)(208 - NewScreen.Height); XX } XX else { XX p_depth = 2L; XX NewWindow.TopEdge = 0L; XX NewWindow.Screen = NULL; XX NewWindow.Type = WBENCHSCREEN; XX } XX /* see if we exit with a startup script */ XX if ((c0|' ') == 'e') { XX ptr = &line[0]; XX while (*ptr != '\000' && *ptr != ' ' && *ptr != '\t') ptr++; XX if (*ptr == '\000') return(NULL); XX while (*ptr != '\000' && (*ptr == ' ' || *ptr == '\t')) ptr++; XX if (*ptr == '\000') return(NULL); XX ptr2 = ptr; XX while (*ptr2 != '\000' && *ptr2 != ' ' && XX *ptr2 != '\t' && *ptr2 != '\n') ptr2++; XX *ptr2 = '\000'; XX return(ptr); XX } XX else return(NULL); XX } XX XXvoid InitDevs() XX{ XXUSHORT colors[4]; XXint i; XXBYTE *b,*c; XX XXIntuitionBase = (struct IntuitionBase *) XX OpenLibrary("intuition.library", INTUITION_REV); XXif( IntuitionBase == NULL ) XX cleanup("can't open intuition",1); XX XXGfxBase = (struct GfxBase *) XX OpenLibrary("graphics.library",GRAPHICS_REV); XXif( GfxBase == NULL ) XX cleanup("can't open graphics library",2); XX XXif (p_screen == 1) { XX if ((myscreen = (struct Screen *)OpenScreen(&NewScreen)) == NULL) XX cleanup("can't open screen",3); XX NewWindow.Screen = myscreen; XX } XX XXif ((mywindow = (struct Window *)OpenWindow(&NewWindow)) == NULL) XX cleanup("can't open window",4); XXif ((myfont = (struct TextFont *)OpenFont(&myattr)) == NULL) XX cleanup("can't open font",4); XX XXmyviewport = (struct ViewPort *)ViewPortAddress(mywindow); XXmyrastport = (struct RastPort *)mywindow->RPort; XX XXSetFont(myrastport,myfont); XX XXif (p_depth > 1) myrequest.BackFill = 2; XXif (p_screen != 0 && p_wbcolors == 0) { XX colors[0] = p_background; XX colors[1] = p_foreground; XX colors[2] = p_bold; XX colors[3] = p_cursor; XX if (p_depth == 1) XX LoadRGB4(myviewport,(struct ColorMap *)colors,2L); XX else XX LoadRGB4(myviewport,(struct ColorMap *)colors,4L); XX } XX XXRead_Request = (struct IOExtSer *) XX AllocMem((long)sizeof(*Read_Request),MEMF_PUBLIC|MEMF_CLEAR); XXRead_Request->io_SerFlags = 0L; XXRead_Request->IOSer.io_Message.mn_ReplyPort = CreatePort(0L,0L); XXif(OpenDevice(SERIALNAME,NULL,Read_Request,NULL)) XX cleanup("Cant open Read device",5); XXrs_in = malloc(p_buffer+1); XXRead_Request->io_SerFlags = 0L; XXRead_Request->io_Baud = p_baud; XXRead_Request->io_ReadLen = 8L; XXRead_Request->io_WriteLen = 8L; XXRead_Request->io_CtlChar = 0x11130000L; XXRead_Request->io_RBufLen = p_buffer; XXRead_Request->io_BrkTime = p_break; XXRead_Request->IOSer.io_Command = SDCMD_SETPARAMS; XXDoIO(Read_Request); XXRead_Request->IOSer.io_Command = CMD_READ; XXRead_Request->IOSer.io_Length = 1; XXRead_Request->IOSer.io_Data = (APTR) &rs_in[0]; XX XXWrite_Request = (struct IOExtSer *) XX AllocMem((long)sizeof(*Write_Request),MEMF_PUBLIC|MEMF_CLEAR); XXb = (BYTE *)Read_Request; XXc = (BYTE *)Write_Request; XXfor (i=0;iIOSer.io_Message.mn_ReplyPort = CreatePort(0L,0L); XXWrite_Request->IOSer.io_Command = CMD_WRITE; XXWrite_Request->IOSer.io_Length = 1; XXWrite_Request->IOSer.io_Data = (APTR) &rs_out[0]; XX XXTimer_Port = CreatePort("Timer Port",0L); XXScript_Timer_Port = CreatePort("Timer Port",0L); XX XXif (OpenDevice(TIMERNAME, UNIT_VBLANK, (char *) &Timer, 0) || XX OpenDevice(TIMERNAME, UNIT_VBLANK, (char *) &Script_Timer, 0)) XX cleanup("can't open timer device",7); XX XXTimer.tr_node.io_Message.mn_ReplyPort = Timer_Port; XXTimer.tr_node.io_Command = TR_ADDREQUEST; XXTimer.tr_node.io_Flags = 0; XXTimer.tr_node.io_Error = 0; XX XXScript_Timer.tr_node.io_Message.mn_ReplyPort = Script_Timer_Port; XXScript_Timer.tr_node.io_Command = TR_ADDREQUEST; XXScript_Timer.tr_node.io_Flags = 0; XXScript_Timer.tr_node.io_Error = 0; XX XXBeepWave = (UBYTE *)AllocMem(BEEPSIZE,(long)(MEMF_CHIP|MEMF_CLEAR)); XXif (BeepWave != 0) BeepWave[0] = 100; XX XXAudio_Port = CreatePort("Audio Port",0L); XX XXAudio_Request.ioa_Request.io_Message.mn_ReplyPort = Audio_Port; XXAudio_Request.ioa_Request.io_Message.mn_Node.ln_Pri = 85; XXAudio_Request.ioa_Data = Audio_AllocMap; XXAudio_Request.ioa_Length = (ULONG) sizeof(Audio_AllocMap); XX XXif (OpenDevice(AUDIONAME, NULL, (char *) &Audio_Request, NULL)) XX cleanup("can't open audio device",8); XX XXAudio_Request.ioa_Request.io_Command = CMD_WRITE; XXAudio_Request.ioa_Request.io_Flags = ADIOF_PERVOL; XXAudio_Request.ioa_Data = BeepWave; XXAudio_Request.ioa_Length = BEEPSIZE; XXAudio_Request.ioa_Period = COLORCLOCK / (BEEPSIZE * BEEPFREQ); XXAudio_Request.ioa_Volume = p_volume; XXAudio_Request.ioa_Cycles = 100; XX} XX XX/*****************************************************************/ XX/* The following function initializes the structure arrays */ XX/* needed to provide the File menu topic. */ XX/*****************************************************************/ XXvoid InitFileItems() XX { XX int n,nplus1; XX XX/* initialize each menu item and IntuiText with loop */ XXfor( n=0; n= 2 && n <= 7) { XX FileItem[n].Command = cmds[n-2]; XX FileItem[n].Flags |= COMMSEQ; XX } XX else FileItem[n].Command = 0; XX FileItem[n].SubItem = NULL; XX FileItem[n].NextSelect = 0; XX XX FileText[n].FrontPen = 0; XX FileText[n].BackPen = 1; XX FileText[n].DrawMode = JAM2;/* render in fore and background */ XX FileText[n].LeftEdge = 0; XX FileText[n].TopEdge = 1; XX FileText[n].ITextFont = NULL; XX FileText[n].NextText = NULL; XX } XXFileItem[FILEMAX-1].NextItem = NULL; XX XX/* initialize text for specific menu items */ XX XXFileText[0].IText = (UBYTE *)"Ascii Capture"; XXFileText[1].IText = (UBYTE *)"Ascii Send"; XXFileText[2].IText = (UBYTE *)"Xmodem Receive"; XXFileText[3].IText = (UBYTE *)"Xmodem Send"; XXFileText[4].IText = (UBYTE *)"Kermit Get"; XXFileText[5].IText = (UBYTE *)"Kermit Receive"; XXFileText[6].IText = (UBYTE *)"Kermit Send"; XXFileText[7].IText = (UBYTE *)"Kermit BYE"; XX} XX XX/****************************************************************** XX/* Main Comm menu XX/* set up for Baud & Parity submenus XX/******************************************************************/ XXvoid InitCommItems() XX { XX int n,nplus1; XX XX/* initialize each menu item and IntuiText with loop */ XXfor( n=0; n= 1 && n <= 2) { XX RSItem[n].Command = cmds[n+5]; XX RSItem[n].Flags |= COMMSEQ; XX } XX else RSItem[n].Command = 0; XX RSItem[n].SubItem = NULL; XX RSItem[n].NextSelect = 0; XX XX RSText[n].FrontPen = 0; XX RSText[n].BackPen = 1; XX RSText[n].DrawMode = JAM2; /* render in fore and background */ XX RSText[n].LeftEdge = 0; XX RSText[n].TopEdge = 1; XX RSText[n].ITextFont = NULL; XX RSText[n].NextText = NULL; XX } XXRSItem[RSMAX-1].NextItem = NULL; XX XX/* select baud item chekced */ XXswitch (p_baud) { XX case 300: n = 0; break; XX case 1200: n = 1; break; XX case 2400: n = 2; break; XX case 4800: n = 3; break; XX case 9600: n = 4; break; XX default: n = 2; p_baud = 2400; XX } XXRSItem[n].Flags |= CHECKED; XX XX/* initialize text for specific menu items */ XXRSText[0].IText = (UBYTE *)" 300"; XXRSText[1].IText = (UBYTE *)" 1200"; XXRSText[2].IText = (UBYTE *)" 2400"; XXRSText[3].IText = (UBYTE *)" 4800"; XXRSText[4].IText = (UBYTE *)" 9600"; XX XX/*****************************************************************/ XX/* The following initializes the structure arrays */ XX/* needed to provide the Parity Submenu topic. */ XX/*****************************************************************/ XX XXfor( n=0; n 3) UtilItem[n].Flags |= CHECKIT; XX UtilItem[n].MutualExclude = 0; XX UtilItem[n].ItemFill = (APTR)&UtilText[n]; XX UtilItem[n].SelectFill = NULL; XX if (n == 0 || n == 2) { XX UtilItem[n].Command = cmds[(n==0)?13:14]; XX UtilItem[n].Flags |= COMMSEQ; XX } XX else if (n >= 5) { XX UtilItem[n].Command = cmds[n+10]; XX UtilItem[n].Flags |= COMMSEQ; XX } XX else UtilItem[n].Command = 0; XX UtilItem[n].SubItem = NULL; XX UtilItem[n].NextSelect = 0; XX XX UtilText[n].FrontPen = 0; XX UtilText[n].BackPen = 1; XX UtilText[n].DrawMode = JAM2;/* render in fore and background */ XX UtilText[n].LeftEdge = 0; XX UtilText[n].TopEdge = 1; XX UtilText[n].ITextFont = NULL; XX UtilText[n].NextText = NULL; XX } XXUtilItem[UTILMAX-1].NextItem = NULL; XX XXif (p_echo) UtilItem[4].Flags |= CHECKED; XXif (p_wrap) UtilItem[5].Flags |= CHECKED; XXif (p_keyapp == 0) UtilItem[6].Flags |= CHECKED; XXif (p_curapp) UtilItem[7].Flags |= CHECKED; XX XX/* initialize text for specific menu items */ XXUtilText[0].IText = (UBYTE *)"Send Break"; XXUtilText[1].IText = (UBYTE *)"Hang Up"; XXUtilText[2].IText = (UBYTE *)"Change Dir"; XXUtilText[3].IText = (UBYTE *)"Clear Scrn"; XXUtilText[4].IText = (UBYTE *)" Echo"; XXUtilText[5].IText = (UBYTE *)" Wrap"; XXUtilText[6].IText = (UBYTE *)" Num Key"; XXUtilText[7].IText = (UBYTE *)" App Cur"; XX} XX XX/****************************************************************/ XX/* The following function inits the Menu structure array with */ XX/* appropriate values for our simple menu. Review the manual */ XX/* if you need to know what each value means. */ XX/****************************************************************/ XXvoid InitMenu() XX{ XXmenu[0].NextMenu = &menu[1]; XXmenu[0].LeftEdge = 5; XXmenu[0].TopEdge = 0; XXmenu[0].Width = 40; XXmenu[0].Height = 10; XXmenu[0].Flags = MENUENABLED; XXmenu[0].MenuName = "File"; /* text for menu-bar display */ XXmenu[0].FirstItem = &FileItem[0]; /* pointer to first item in list */ XX XXmenu[1].NextMenu = &menu[2]; XXmenu[1].LeftEdge = 55; XXmenu[1].TopEdge = 0; XXmenu[1].Width = 88; XXmenu[1].Height = 10; XXmenu[1].Flags = MENUENABLED; XXmenu[1].MenuName = "Comm Setup"; /* text for menu-bar display */ XXmenu[1].FirstItem = &CommItem[0]; /* pointer to first item in list */ XX XXmenu[2].NextMenu = &menu[3]; XXmenu[2].LeftEdge = 153; XXmenu[2].TopEdge = 0; XXmenu[2].Width = 56; XXmenu[2].Height = 10; XXmenu[2].Flags = MENUENABLED; XXmenu[2].MenuName = "Script"; /* text for menu-bar display */ XXmenu[2].FirstItem = &ScriptItem[0]; /* pointer to first item in list*/ XX XXmenu[3].NextMenu = NULL; XXmenu[3].LeftEdge = 225; XXmenu[3].TopEdge = 0; XXmenu[3].Width = 64; XXmenu[3].Height = 10; XXmenu[3].Flags = MENUENABLED; XXmenu[3].MenuName = "Utility"; /* text for menu-bar display */ XXmenu[3].FirstItem = &UtilItem[0]; /* pointer to first item in list*/ XX} XX SHAR_EOF if test 22776 -ne "`wc -c init.c`" then echo shar: error transmitting init.c '(should have been 22776 characters)' fi # End of shell archive exit 0