home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d3xx
/
d305
/
mackie.lha
/
Mackie
/
mackie.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-01-17
|
49KB
|
1,880 lines
/*
Modified to work with Manx 3.6a; probably won't work with Lattice.
Based on:
*/
/* Compile with -DSPLINES for splines instead of lines */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* |_o_o|\\ Copyright (c) 1986 The Software Distillery. All Rights Reserved */
/* |. o.| || This program may not be distributed without the permission of */
/* | . | || the authors. */
/* | o | || Dave Baker Ed Burnette Stan Chow Jay Denebeim */
/* | . |// Gordon Keener Jack Rouse John Toebes Doug Walker */
/* ====== BBS:(919)-471-6436 VOICE:(919)-469-4210 */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* VERY loosely based on the input.device example by Rob Peck, 12/1/85
*/
/* * * * * * * * * INCLUDE FILES * * * * * * * * * * * */
#include <exec/types.h>
#include <exec/nodes.h>
#include <exec/lists.h>
#include <exec/memory.h>
#include <exec/interrupts.h>
#include <exec/ports.h>
#include <exec/libraries.h>
#include <exec/io.h>
#include <exec/tasks.h>
#include <exec/execbase.h>
#include <exec/devices.h>
#include <devices/timer.h>
#include <devices/input.h>
#include <devices/inputevent.h>
#include <devices/console.h>
#include <intuition/intuition.h>
#include <intuition/intuitionbase.h>
#include <libraries/dos.h>
#include <libraries/dosextens.h>
#include <graphics/gfxmacros.h>
#include <hardware/custom.h>
#include <hardware/dmabits.h>
/*
* I need this kludge because of a bug in functions.h.
*/
#define ConsoleDevice IDontReallyExist
#include <functions.h>
#undef ConsoleDevice
#include <stdio.h>
/* * * * * * * * * * * CONSTANTS * * * * * * * * * * * * */
#define PORTNAME "Mackie.port"
#define TIMEINTERVAL 1L /* in seconds */
#define DEFTIME 300 /* two minute timeout */
#define MAXCMD 200
#define MAXPENDINGSYSTEM 20
#define DEFKEY 0x45
#define DEFCMD "NEWCLI >NIL: <NIL:"
#define STARTUPFILE "s:.mackierc"
/*
* Macro to make BPTR things easier to work with.
*/
#define BSTRtoS(a) ((char *)(((long)(a))<<2))
/* * * * * * * * * * * GLOBAL VARIABLES * * * * * * * * * */
/*
* Detach stuff (doesn't work, somehow!)
*/
struct Task *globalbuddy ;
ULONG globalcreatclisig ;
ULONG globalunblanksig ;
ULONG globalfrontsig ;
ULONG globalnoevents ;
short globalcreatsignum ;
short globalblanksignum ;
short globalreplysignum ;
short globalfrontsignum ;
short globalkey ;
char globalfrontkey[MAXPENDINGSYSTEM] ;
char globalfrontqual[MAXPENDINGSYSTEM] ;
short globalfrontptr ;
short globaldraw ;
short globalhelppressed ;
struct Screen *globalblankscreen ;
#define SHIFT 1
#define NOTCLI 2
#define NOTINTUITION 4
struct hotkey {
struct hotkey*next ;
char key, flags ;
int structlen ;
char *matchstring, *startstring ;
char strings[2] ;
} *hotkeys ;
struct Window *lastwindows[200] ;
struct Task *task ;
long taskreply ; /* the signal the line drawing task will return */
#define STACKSIZE (1000)
long stackmem[STACKSIZE/4] ;
struct InfoData *infoptr ;
struct MsgPort *FindPort(), *CreatePort();
void DeletePort();
char *startupfile = STARTUPFILE ;
struct OURMSG {
struct Message msgpart;
short key;
short interval;
short draw ;
char cmd[MAXCMD];
};
short oldtime ;
extern char *strcpy() ;
/************************************************************************/
/* the handler subroutine - called through the handler stub */
/************************************************************************/
extern void HandlerInterface();
void foobar() {
#asm
_HandlerInterface:
movem.l a4,-(a7)
movem.L A0/A1,-(A7)
jsr _geta4#
jsr _myhandler
addq.L #8,A7
movem.L (a7)+,a4
rts
#endasm
}
char keytoasc[128] ;
struct InputEvent *myhandler(ev, gptr)
struct InputEvent *ev; /* and a pointer to a list of events */
long gptr ; /* ignore */
{
register struct InputEvent *ep, *laste;
int key ;
/*
* run down the list of events
* to see if they pressed
* one of the magic buttons
*/
for (ep = ev, laste = NULL; ep != NULL; ep = ep->ie_NextEvent) {
if ((ep->ie_Class == IECLASS_RAWKEY) &&
(((ep->ie_Qualifier & IEQUALIFIER_LCOMMAND) &&
(ep->ie_Code == globalkey))
#ifdef HELPKEY
|| (!globalhelppressed && ep->ie_Code == 0x5f) ||
(globalhelppressed &&
(ep->ie_Code & 0x80) == 0 &&
/*
* All the qualifiers have code = 0x6?; dangerous to take advantage
* of?
*/
(ep->ie_Code & 0xf0) != 0x60 &&
globalfrontkey[globalfrontptr] == 0 &&
(globalhelppressed = (keytoasc[ep->ie_Code] != '.')))
#endif
)) {
if ((ep->ie_Qualifier & IEQUALIFIER_LCOMMAND) &&
(ep->ie_Code == globalkey)) {
key = -1 ;
#ifdef HELPKEY
} else if (globalhelppressed) {
globalfrontkey[globalfrontptr] = key = ep->ie_Code ;
globalfrontqual[globalfrontptr] = ep->ie_Qualifier ;
globalfrontptr++ ;
if (globalfrontptr >= MAXPENDINGSYSTEM)
globalfrontptr = 0 ;
globalhelppressed = 0 ;
} else {
globalhelppressed = 1 ;
key = 0 ;
#endif
}
/* we can handle this event so take it off the chain */
if (laste == NULL)
ev = ep->ie_NextEvent;
else
laste->ie_NextEvent = ep->ie_NextEvent;
/* now tell him to create the new cli */
if (key == -1)
Signal(globalbuddy, globalcreatclisig);
#ifdef HELPKEY
else if (key > 0)
Signal(globalbuddy, globalfrontsig);
#endif
} else
laste = ep;
if (ep->ie_Class != IECLASS_TIMER) {
globalnoevents = 0;
if (globalblankscreen != NULL)
Signal(globalbuddy, globalunblanksig);
}
}
/* pass on the pointer to the event */
return(ev);
}
/* * * * * * * * * * * EXTERNAL ROUTINES * * * * * * * * * */
struct IntuitionBase *IntuitionBase;
struct GfxBase *GfxBase;
struct DosLibrary *DosBase;
struct NewScreen NewScreen =
{ 0, 0, 320, 30, 1, 0, 1, NULL, CUSTOMSCREEN, NULL, NULL, NULL, NULL };
extern struct MsgPort *CreatePort();
struct IOStdReq *CreateIOReq();
void DeleteIOReq();
/************************************************************************/
/* Queue a timer to go off in a given number of seconds */
/************************************************************************/
void QueueTimer(tr,seconds)
register struct timerequest *tr;
ULONG seconds;
{
tr->tr_node.io_Command = TR_ADDREQUEST; /* add a new timer request */
tr->tr_time.tv_secs = seconds; /* seconds */
tr->tr_time.tv_micro = 0;
SendIO( (struct IORequest *)tr );
}
/*
* A utility to change our priority.
*/
prito(n)
int n ;
{
SetTaskPri(FindTask(0L), (long)n) ;
}
/************************************************************************/
/* the main program to do the popcli stuff */
/************************************************************************/
main(argc, argv)
int argc ;
char *argv[] ;
{
struct MsgPort *port;
int stay = 0;
register struct OURMSG *msg;
int i ;
char cmdstr[MAXCMD];
short key, timeout ;
struct FileHandle *nullfh = NULL ;
ULONG sig, timersig;
struct timerequest *timerreq;
struct MsgPort *timerport;
struct MsgPort *inputDevPort;
struct IOStdReq *inputRequestBlock;
register struct Interrupt handlerStuff;
char *cmd ;
int draw = 0 ;
int nextfront = 0 ;
prito(20) ;
globalcreatsignum = -1;
globalblanksignum = -1;
globalreplysignum = -1;
globalfrontsignum = -1;
globalblankscreen = NULL;
globalkey = DEFKEY ;
globaldraw = 1 ;
timerreq = NULL;
timerport = NULL;
inputDevPort = NULL;
inputRequestBlock = NULL;
/* now see if we are already installed */
if ((port = FindPort(PORTNAME)) == NULL) {
stay = 1; /* remember to hang around when we are done */
/* not installed, we need to install our own port */
if ((port = CreatePort(PORTNAME,0L)) == NULL)
goto abort;
}
#ifdef HELPKEY
/*
* If we are hanging around, initialize our keyboard translation table.
* If we have difficulty, exit angry.
*/
if (stay)
if (initkeytoasc())
goto abort ;
#endif
/* now send the parameter to the waiting program */
if ((msg = (struct OURMSG *)
AllocMem((long)sizeof(struct OURMSG), MEMF_CLEAR|MEMF_PUBLIC)) == NULL)
goto abort;
if ((infoptr = (struct InfoData *)
AllocMem((long)sizeof(struct InfoData), MEMF_CLEAR)) == NULL)
goto abort ;
/* fill in the message information */
msg->msgpart.mn_Length = sizeof(struct OURMSG);
strcpy(cmdstr, DEFCMD);
timeout = -1 ;
key = 0 ;
msg->cmd[0] = 0;
/* if we were run from CLI then output our banner and process parameters */
if (argc > 0) {
/* display our copyright */
if (stay)
puts("Mackie 1.4 by Tomas Rokicki - Copyright \xa9 1987-9 Radical Eye Software") ;
if (argc == 1)
puts("Usage: Mackie [-q] [-l] [-b] [-f startup] [time] [\"command\"]") ;
argc-- ;
argv++ ;
while (argc > 0) {
cmd = argv[0] ;
if (*cmd == '-') {
cmd++ ;
switch (*cmd) {
case 'q' : case 'Q' :
key = -1 ;
puts("\x9B1mMackie\x9B0m Terminating") ;
break ;
case 'l' : case 'L' :
draw = 1 ;
break ;
case 'b' : case 'B' :
draw = -1 ;
break ;
case 'f' : case 'F' :
if (cmd[1])
startupfile = cmd + 1 ;
else {
argv++ ;
argc-- ;
startupfile = argv[0] ;
}
break ;
default :
puts("Error in parameter!") ;
}
} else if ('0' <= *cmd && *cmd <= '9') {
timeout = 0;
while ((*cmd >= '0') && (*cmd <= '9'))
timeout = (timeout*10) + *cmd++ - '0';
if (timeout < 0)
timeout = DEFTIME;
} else {
strcpy(msg->cmd, cmd) ;
}
argc-- ;
argv++ ;
}
}
msg->interval = timeout;
msg->key = key;
msg->draw = draw ;
if (stay)
processstartup(startupfile, msg) ;
if (draw)
globaldraw = draw ;
PutMsg(port,(struct Message *)msg);
if (!stay) goto abort;
if (timeout == -1)
timeout = DEFTIME ;
globalblankscreen = NULL;
globalbuddy = FindTask(0L);
globalnoevents = 0;
nullfh = Open("NIL:", MODE_NEWFILE);
if (((inputDevPort = CreatePort(0L,0L)) == NULL) ||
((inputRequestBlock =
CreateIOReq(inputDevPort, (long)sizeof(struct IOStdReq))) == NULL) ||
((timerport = CreatePort(0L,0L)) == NULL) ||
((timerreq = (struct timerequest *)
CreateIOReq(timerport, (long)sizeof(struct timerequest))) == NULL))
goto abort ;
if (((globalcreatsignum = AllocSignal(-1L)) == -1) ||
((globalblanksignum = AllocSignal(-1L)) == -1) ||
((globalreplysignum = AllocSignal(-1L)) == -1) ||
((globalfrontsignum = AllocSignal(-1L)) == -1) ||
((GfxBase = (struct GfxBase *)
OpenLibrary("graphics.library", 0L)) == NULL) ||
((IntuitionBase = (struct IntuitionBase *)
OpenLibrary("intuition.library", 0L)) == NULL) ||
OpenDevice(TIMERNAME, UNIT_VBLANK, (struct IORequest *)timerreq, 0L) ||
OpenDevice("input.device",0L,(struct IORequest *)inputRequestBlock,0L))
goto abort;
handlerStuff.is_Data = (APTR)0L ;
handlerStuff.is_Code = HandlerInterface;
handlerStuff.is_Node.ln_Pri = 51;
timersig = (1L << timerport->mp_SigBit);
globalcreatclisig = 1L << globalcreatsignum;
globalunblanksig = 1L << globalblanksignum;
globalfrontsig = 1L << globalfrontsignum;
inputRequestBlock->io_Command = IND_ADDHANDLER;
inputRequestBlock->io_Data = (APTR)&handlerStuff;
DoIO((struct IORequest *)inputRequestBlock);
QueueTimer(timerreq, TIMEINTERVAL);
for(;;) { /* FOREVER */
sig = Wait( globalcreatclisig | globalunblanksig | timersig |
globalfrontsig);
/* see if they asked us to change the interval */
if ((msg = (struct OURMSG *)GetMsg(port)) != NULL) {
if (msg->cmd[0]) strcpy(cmdstr, msg->cmd);
if (msg->key)
globalkey = msg->key;
if (msg->interval != -1)
timeout = msg->interval;
if (msg->draw)
globaldraw = msg->draw ;
FreeMem((char *)msg, (long)msg->msgpart.mn_Length);
if (msg->key == -1) goto abort;
}
if ((sig & globalunblanksig) && globalblankscreen)
screenunblank() ;
if (sig & globalcreatclisig) {
WBenchToFront();
prito(0) ;
(void)Execute(cmdstr,nullfh,nullfh);
prito(20) ;
}
#ifdef HELPKEY
if (sig & globalfrontsig) {
while (i=globalfrontkey[nextfront]) {
windowtofront(keytoasc[i], globalfrontqual[nextfront]) ;
globalfrontkey[nextfront] = 0 ;
nextfront++ ;
if (nextfront >= MAXPENDINGSYSTEM)
nextfront = 0 ;
}
}
#endif
if (sig & timersig) {
/* get rid of the message */
oldtime++ ;
(void)GetMsg(timerport);
QueueTimer(timerreq, TIMEINTERVAL);
if (task)
SetTaskPri(task, 10L) ;
if (timeout != 0 && (globalnoevents++ >= timeout) && (globalblankscreen == NULL))
blankscreen() ;
}
}
abort:
if (infoptr) {
FreeMem(infoptr, (long)sizeof(struct InfoData)) ;
infoptr = NULL ;
}
if (timerreq != NULL) {
if (timerreq->tr_node.io_Device != NULL)
CloseDevice((struct IORequest *)timerreq);
DeleteIOReq((struct IOStdReq *)timerreq);
}
if (inputRequestBlock != NULL) {
if (inputRequestBlock->io_Device != NULL) {
inputRequestBlock->io_Command = IND_REMHANDLER;
inputRequestBlock->io_Data = (APTR)&handlerStuff;
DoIO((struct IORequest *)inputRequestBlock);
CloseDevice((struct IORequest *)inputRequestBlock);
}
DeleteIOReq(inputRequestBlock);
}
screenunblank() ;
if (timerport != NULL) DeletePort(timerport);
if (globalcreatsignum != -1) FreeSignal(globalcreatsignum);
if (globalblanksignum != -1) FreeSignal(globalblanksignum);
if (globalreplysignum != -1) FreeSignal(globalreplysignum);
if (globalfrontsignum != -1) FreeSignal(globalfrontsignum);
if (IntuitionBase != NULL) CloseLibrary((struct Library *)IntuitionBase);
if (GfxBase != NULL) CloseLibrary((struct Library *)GfxBase);
if (inputDevPort != NULL) DeletePort(inputDevPort);
if (stay && (port != NULL)) DeletePort(port);
{
struct hotkey *hk ;
while (hotkeys) {
hk = hotkeys->next ;
FreeMem(hotkeys, (long)hotkeys->structlen) ;
hotkeys = hk ;
}
}
if (nullfh) Close(nullfh);
prito(0) ;
}
struct IOStdReq *
CreateIOReq(port, size)
struct MsgPort *port;
long size;
{
register struct IOStdReq *ioReq;
if ((ioReq = (struct IOStdReq *)
AllocMem(size, MEMF_CLEAR | MEMF_PUBLIC)) != NULL) {
ioReq->io_Message.mn_Node.ln_Type = NT_MESSAGE;
ioReq->io_Message.mn_Node.ln_Pri = 0;
ioReq->io_Message.mn_Length = size;
ioReq->io_Message.mn_ReplyPort = port;
}
return(ioReq);
}
void DeleteIOReq(ioReq)
register struct IOStdReq *ioReq;
{
ioReq->io_Message.mn_Node.ln_Type = 0xff;
ioReq->io_Device = (struct Device *) -1;
ioReq->io_Unit = (struct Unit *) -1;
FreeMem( (char *)ioReq, (long)ioReq->io_Message.mn_Length);
}
/*
* All of this stuff down here was written by Tomas Rokicki.
* (C) Copyright 1987, 1988, Radical Eye Software.
*/
#include "graphics/gfxbase.h"
/*
* The maximum number of lines on the screen at once.
*/
#define MAXLINES (30)
#define MAXPOINTS (20)
int maxpoints ;
/*
* The external variables we access.
*/
struct RastPort *rastport ;
short screenheight, screenwidth ;
/*
* Some locals to this file.
*/
static struct NewScreen newscreen = {
0, 0,
640, 400,
1,
0, 1,
HIRES | LACE | SCREENQUIET,
CUSTOMSCREEN,
NULL,
NULL,
NULL,
NULL } ;
/*
* This routine opens a screen and fires off the task if apropriate.
*/
void taskrout() ;
blankscreen() {
register struct Task *rtask ;
screenheight = 2 * GfxBase->NormalDisplayRows ;
screenwidth = GfxBase->NormalDisplayColumns ;
newscreen.Height = screenheight ;
newscreen.Width = screenwidth ;
if (globaldraw == -1 || AvailMem(MEMF_CHIP) < 70000L ||
(globalblankscreen = OpenScreen(&newscreen)) == NULL) {
if ((globalblankscreen = OpenScreen(&NewScreen)) != NULL) {
SetRGB4(&(globalblankscreen->ViewPort), 0L, 0L, 0L, 0L);
OFF_DISPLAY ;
}
} else {
if (globalblankscreen == NULL &&
(globalblankscreen = OpenScreen(&newscreen))==NULL)
return ;
/*
* Turning off the sprites is a little bit tricky. A simple OFF_SPRITE
* will continue to display the data in the current sprite registers.
* This happens most often with the cursor. To fix, we simply clear out
* the sprite control registers after turning the sprites off. This
* might break all of the sprites when the system comes back up . . .
*/
OFF_SPRITE ;
custom.spr[0].ctl = 0 ;
custom.spr[1].ctl = 0 ;
custom.spr[2].ctl = 0 ;
custom.spr[3].ctl = 0 ;
custom.spr[4].ctl = 0 ;
custom.spr[5].ctl = 0 ;
custom.spr[6].ctl = 0 ;
custom.spr[7].ctl = 0 ;
SetRGB4(&(globalblankscreen->ViewPort), 0L, 0L, 0L, 0L) ;
rastport = &(globalblankscreen->RastPort) ;
SetAPen(rastport, 0L) ;
Forbid() ;
RectFill(rastport, 0L, 0L, (long)screenwidth-1, 30L) ;
Permit() ;
SetAPen(rastport, 1L) ;
rtask = (struct Task *)AllocMem((long)sizeof(struct Task),
MEMF_CLEAR | MEMF_PUBLIC) ;
if (rtask != NULL) {
rtask->tc_Node.ln_Pri = 10 ;
rtask->tc_Node.ln_Type = NT_TASK ;
rtask->tc_Node.ln_Name = "ri.Lines" ;
rtask->tc_SPLower = (APTR)stackmem ;
rtask->tc_SPUpper = rtask->tc_SPReg =
(APTR)(stackmem + STACKSIZE/4 - 8) ;
AddTask(rtask, taskrout, 0L) ;
task = rtask ;
}
}
}
/*
* Unblank the screen. We kill the task with the standard ^C kill signal.
*/
#ifdef STATS
long linestat, splinestat ;
#endif
screenunblank() {
if (task != NULL) {
Signal(task, 1L << SIGBREAKB_CTRL_C) ;
SetTaskPri(task, 11L) ;
Wait(1L << globalreplysignum) ;
RemTask(task);
FreeMem(task, (long)sizeof(struct Task)) ;
task = NULL ;
}
if (globalblankscreen != NULL) {
CloseScreen(globalblankscreen);
globalblankscreen = NULL ;
ON_DISPLAY ;
ON_SPRITE ;
}
#ifdef STATS
printf("%ld %ld\n", splinestat, linestat) ;
linestat = 0 ;
splinestat = 0 ;
#endif
}
/*
* This routine returns a random value from 0 to n-1.
*/
int randm(i)
int i ;
{
static long seed ;
register long rseed ;
register long rval ;
rseed = seed ;
if (rseed == 0)
rseed = 323214521 + globalblankscreen->MouseX +
globalblankscreen->MouseY ;
rseed = rseed * 123213 + 121 ;
rval = (rseed >> 5) & 65535 ;
seed = rseed ;
return ((i * rval) >> 16) ;
}
/*
* This routine sets x and y values to a random number.
*/
static long x, y ;
randomxy() {
x = randm(screenwidth) ;
y = randm(screenheight) ;
}
/*
* Main routines are always fun.
*/
struct box {
short x[MAXPOINTS], y[MAXPOINTS] ;
} store[MAXLINES] ;
#define FIX(x) (((long)(x)) << 7)
#define FIXH(x) (((long)((*(x)+(x)[1])>>1)) << 7)
#define UNFIX(x) ((x)>>7)
struct box *ptr ;
struct box *eptr ;
int numlines ;
int mdelta = -1 ;
int maxlines = MAXLINES/2 ;
short dx[MAXPOINTS], dy[MAXPOINTS] ;
short ox[MAXPOINTS], oy[MAXPOINTS] ;
short nx[MAXPOINTS], ny[MAXPOINTS] ;
short dr, dg, db ;
short or, og, ob ;
short nr, ng, nb ;
long oldx, oldy, oldwidth, oldptr ;
int oldcol ;
/*
* Draws a spline! Expects all arguments in registers.
*/
#asm
public _Draw
cseg
rspline
move.l a0,d0
sub.l d6,d0
move.l d0,d3
bpl save1
neg.l d0
save1
move.l a1,d1
sub.l d7,d1
move.l d1,d4
bpl save2
neg.l d1
save2
move.l d0,d2
cmp.l d0,d1
bmi save3
lsr.l #3,d2
bra save9
save3
lsr.l #3,d1
save9
add.l d1,d2
asr.l #3,d2
beq check2
asr.l #5,d3
asr.l #5,d4
move.l a2,d0
sub.l a0,d0
move.l a3,d1
sub.l a1,d1
asr.l #5,d0
asr.l #5,d1
muls.w d4,d0
muls.w d3,d1
sub.l d1,d0
bpl save4
neg.l d0
save4
cmp.l d0,d2
ble pushem
move.l a5,d0
sub.l a0,d0
move.l a6,d1
sub.l a1,d1
asr.l #5,d0
asr.l #5,d1
muls.w d4,d0
muls.w d3,d1
sub.l d1,d0
bpl save5
neg.l d0
save5
cmp.l d0,d2
ble pushem
makeline
#endasm
#ifdef STATS
#asm
add.l #1,_linestat
#endasm
#endif
#asm
lsr.l #7,d7
move.l d7,d1
lsr.l #7,d6
move.l d6,d0
movem.l d2-d5/a0-a1,-(sp)
move.l _oldx,d2
move.l _oldy,d3
move.l d0,_oldx
move.l d1,_oldy
move.l _oldwidth,d4
move.l _oldptr,a0
jsr mdraw
movem.l (sp)+,d2-d5/a0-a1
rts
check2
move.l a0,d0
sub.l a2,d0
bpl ch1
neg.l d0
ch1
move.l a1,d1
sub.l a3,d1
bpl ch2
neg.l d1
ch2
add.l d0,d1
asr.l #3,d1
bne pushem
move.l a0,d0
sub.l a5,d0
bpl ch3
neg.l d0
ch3
move.l a1,d1
sub.l a6,d1
bpl ch4
neg.l d1
ch4
add.l d0,d1
asr.l #3,d1
beq makeline
pushem
movem.l d6/d7,-(sp)
move.l a5,d0
add.l d6,d0
asr.l #1,d0
move.l a6,d1
add.l d7,d1
asr.l #1,d1
movem.l d0/d1,-(sp)
move.l a2,d2
add.l a5,d2
asr.l #1,d2
move.l a3,d3
add.l a6,d3
asr.l #1,d3
move.l d0,d4
add.l d2,d4
asr.l #1,d4
move.l d1,d5
add.l d3,d5
asr.l #1,d5
movem.l d4/d5,-(sp)
move.l a0,d6
add.l a2,d6
asr.l #1,d6
move.l a1,d7
add.l a3,d7
asr.l #1,d7
move.l d2,d0
add.l d6,d0
asr.l #1,d0
move.l d3,d1
add.l d7,d1
asr.l #1,d1
move.l d6,a2
move.l d7,a3
move.l d0,d6
add.l d4,d6
asr.l #1,d6
move.l d1,d7
add.l d5,d7
asr.l #1,d7
movem.l d6/d7,-(sp)
move.l d0,a5
move.l d1,a6
jsr rspline
movem.l (sp)+,a0/a1
movem.l (sp)+,a2/a3/a5/a6
movem.l (sp)+,d6/d7
bra rspline
;
include 'exec/types.i'
include 'hardware/custom.i'
include 'hardware/blit.i'
include 'hardware/dmabits.i'
;
xref _custom
;
;
; Our entry point.
;
mdraw:
move.l #$dff000,a1 ; Manx requires this
sub.w d0,d2 ; calculate dx
bmi xneg ; if negative, octant is one of [3,4,5,6]
sub.w d1,d3 ; calculate dy '' is one of [1,2,7,8]
bmi yneg ; if negative, octant is one of [7,8]
cmp.w d3,d2 ; cmp |dx|,|dy| '' is one of [1,2]
bmi ygtx ; if y>x, octant is 2
moveq.l #OCTANT1+LINEMODE,d5 ; otherwise octant is 1
bra lineagain ; go to the common section
ygtx:
exg d2,d3 ; X must be greater than Y
moveq.l #OCTANT2+LINEMODE,d5 ; we are in octant 2
bra lineagain ; and common again.
yneg:
neg.w d3 ; calculate abs(dy)
cmp.w d3,d2 ; cmp |dx|,|dy|, octant is [7,8]
bmi ynygtx ; if y>x, octant is 7
moveq.l #OCTANT8+LINEMODE,d5 ; otherwise octant is 8
bra lineagain
ynygtx:
exg d2,d3 ; X must be greater than Y
moveq.l #OCTANT7+LINEMODE,d5 ; we are in octant 7
bra lineagain
xneg:
neg.w d2 ; dx was negative! octant is [3,4,5,6]
sub.w d1,d3 ; we calculate dy
bmi xyneg ; if negative, octant is one of [5,6]
cmp.w d3,d2 ; otherwise it's one of [3,4]
bmi xnygtx ; if y>x, octant is 3
moveq.l #OCTANT4+LINEMODE,d5 ; otherwise it's 4
bra lineagain
xnygtx:
exg d2,d3 ; X must be greater than Y
moveq.l #OCTANT3+LINEMODE,d5 ; we are in octant 3
bra lineagain
waitmore:
nop
nop
btst #DMAB_BLTDONE-8,dmaconr(a1)
beq donewait
bra waitmore
xyneg:
neg.w d3 ; y was negative, in one of [5,6]
cmp.w d3,d2 ; is y>x?
bmi xynygtx ; if so, octant is 6
moveq.l #OCTANT5+LINEMODE,d5 ; otherwise, octant is 5
bra lineagain
xynygtx:
exg d2,d3 ; X must be greater than Y
moveq.l #OCTANT6+LINEMODE,d5 ; we are in octant 6
lineagain:
mulu.w d4,d1 ; Calculate y1 * width
ror.l #4,d0 ; move upper four bits into hi word
add.w d0,d0 ; multiply by 2
add.l d1,a0 ; ptr += (x1 >> 3)
add.w d0,a0 ; ptr += y1 * width
swap d0 ; get the four bits of x1
or.w _oldcol,d0 ; or with USEA, USEC, USED, F=A~C+~AC
lsl.w #2,d3 ; Y = 4 * Y
add.w d2,d2 ; X = 2 * X
move.w d2,d1 ; set up size word
lsl.w #5,d1 ; shift five left
add.w #$42,d1 ; and add 1 to height, 2 to width
btst #DMAB_BLTDONE-8,dmaconr(a1) ; safety check
waitblit:
btst #DMAB_BLTDONE-8,dmaconr(a1) ; wait for blitter
bne waitmore
donewait:
move.w d3,bltbmod(a1) ; B mod = 4 * Y
sub.w d2,d3
ext.l d3
move.l d3,bltapt(a1) ; A ptr = 4 * Y - 2 * X
bpl lineover ; if negative,
or.w #SIGNFLAG,d5 ; set sign bit in con1
lineover:
move.w d0,bltcon0(a1) ; write control registers
move.w d5,bltcon1(a1)
move.w d4,bltcmod(a1) ; C mod = bitplane width
move.w d4,bltdmod(a1) ; D mod = bitplane width
sub.w d2,d3
move.w d3,bltamod(a1) ; A mod = 4 * Y - 4 * X
move.w #$8000,bltadat(a1) ; A data = 0x8000
moveq.l #-1,d5 ; Set masks to all ones
move.l d5,bltafwm(a1) ; we can hit both masks at once
move.l a0,bltcpt(a1) ; Pointer to first pixel to set
move.l a0,bltdpt(a1)
move.w d1,bltsize(a1) ; Start blit
rts ; and return, blit still in progress.
#endasm
/*
* Now our linkage to the spline routine. Parameters are in 8(a5)...
*/
int drawspline(x1, y1, x2, y2, x3, y3, x4, y4)
long x1, y1, x2, y2, x3, y3, x4, y4 ;
{
#ifdef STATS
splinestat++ ;
#endif
#asm
movem.l saver,-(sp)
move.l 8(a5),a0
move.l 12(a5),a1
move.l 16(a5),a2
move.l 20(a5),a3
move.l 28(a5),a6
move.l 32(a5),d6
move.l 36(a5),d7
move.l 24(a5),a5
jsr rspline
movem.l (sp)+,saver
saver reg d0-d7/a0-a6
#endasm
}
int closed ;
char *nextlegal[] = { "01458", "236", "01458", "236", "01458", "23", "01458",
"", "0145" } ;
int advval[] = { 3, 2, 3, 2, 1, 0, 1, 0, 1 } ;
unsigned char realfunc[14] ;
char namefunc[20] ;
struct IntuiText itext = { 1, 0, JAM1, 0, 0, NULL, (UBYTE *)&namefunc } ;
saytext()
{
PrintIText(rastport, &itext, 10L, 14L) ;
}
makefunc() {
register int i ;
register int goallen ;
register int sofar = 0 ;
register unsigned char *p ;
register char *nextpossib ;
closed = randm(4) ;
switch(closed) {
case 3:
closed = 2 ;
case 2:
goallen = 3 + randm(4) ;
break ;
case 1:
goallen = 4 + randm(7) ;
break ;
case 0:
goallen = 2 + randm(8) ;
break ;
}
while (1) {
if (closed == 0)
nextpossib = "0145" ;
else
nextpossib = "0123456" ;
sofar = 0 ;
p = realfunc ;
while (sofar < goallen) {
i = nextpossib[randm(strlen(nextpossib))] - '0' ;
*p++ = i ;
nextpossib = nextlegal[i] ;
sofar += advval[i] ;
}
if (sofar == goallen) {
if (closed == 0) {
if (nextpossib[0] == '0')
break ;
} else {
if (*nextpossib == '0' || realfunc[0] < 4 || *(p-1) < 4) {
if ((*nextpossib == '0') ?
((realfunc[0] & 2) != 0) : ((realfunc[0] & 2) == 0)) {
if (realfunc[0] != 5) {
realfunc[0] ^= 2 ;
break ;
}
} else {
break ;
}
}
}
}
}
*p = 100 ;
maxpoints = goallen ;
switch (closed) {
case 2:
for (i=0; i<p-realfunc; i++)
p[i] = realfunc[i] ;
p[p-realfunc] = 100 ;
break ;
case 1:
break ;
case 0:
maxpoints++ ;
break ;
}
for (i=0, p=realfunc; *p < 100; p++, i++)
namefunc[i] = *p + '0' ;
namefunc[i++] = ' ' ;
namefunc[i++] = '0' + closed ;
namefunc[i++] = ' ' ;
namefunc[i++] = '0' + maxpoints ;
namefunc[i] = 0 ;
}
#define HALF(a) ((*(a)+(a)[1])>>1)
draw_s_f(xptr, yptr)
register short *xptr, *yptr ;
{
oldx = HALF(xptr) ;
oldy = HALF(yptr) ;
OwnBlitter() ;
drawspline(FIX(oldx), FIX(oldy), FIX(xptr[1]), FIX(yptr[1]),
FIX(xptr[2]), FIX(yptr[2]), FIXH(xptr+2), FIXH(yptr+2)) ;
DisownBlitter() ;
}
draw_sf(xptr, yptr)
register short *xptr, *yptr ;
{
oldx = HALF(xptr) ;
oldy = HALF(yptr) ;
OwnBlitter() ;
drawspline(FIX(oldx), FIX(oldy), FIX(xptr[1]), FIX(yptr[1]),
FIX(xptr[2]), FIX(yptr[2]), FIX(xptr[3]), FIX(yptr[3])) ;
DisownBlitter() ;
}
draws_f(xptr, yptr)
register short *xptr, *yptr ;
{
oldx = *xptr ;
oldy = *yptr ;
OwnBlitter() ;
drawspline(FIX(*xptr), FIX(*yptr), FIX(xptr[1]), FIX(yptr[1]),
FIX(xptr[2]), FIX(yptr[2]), FIXH(xptr+2), FIXH(yptr+2)) ;
DisownBlitter() ;
}
drawsf(xptr, yptr)
register short *xptr, *yptr ;
{
oldx = *xptr ;
oldy = *yptr ;
OwnBlitter() ;
drawspline(FIX(*xptr), FIX(*yptr), FIX(xptr[1]), FIX(yptr[1]),
FIX(xptr[2]), FIX(yptr[2]), FIX(xptr[3]), FIX(yptr[3])) ;
DisownBlitter() ;
}
draw_lf(xptr, yptr)
register short *xptr, *yptr ;
{
Move(rastport, (long)HALF(xptr), (long)HALF(yptr)) ;
xptr++ ;
yptr++ ;
Draw(rastport, (long)*xptr, (long)*yptr) ;
}
drawl_f(xptr, yptr)
register short *xptr, *yptr ;
{
Move(rastport, (long)*xptr, (long)*yptr) ;
Draw(rastport, (long)HALF(xptr), (long)HALF(yptr)) ;
}
drawlf(xptr, yptr)
register short *xptr, *yptr ;
{
Move(rastport, (long)*xptr, (long)*yptr) ;
xptr++ ;
yptr++ ;
Draw(rastport, (long)*xptr, (long)*yptr) ;
}
drawnlf() {}
int (*funcs[])() = { &drawsf, &draws_f, &draw_sf, &draw_s_f,
&drawlf, &drawl_f, &draw_lf, NULL, &drawnlf } ;
drawfunc(bptr)
register struct box *bptr ;
{
register long i ;
register short *x, *y ;
register unsigned char *p ;
/* saytext() ; */
oldwidth = rastport->BitMap->BytesPerRow ;
oldptr = (long)rastport->BitMap->Planes[0] ;
switch(closed) {
case 2:
for (i=0, x=&(bptr->x[0]), y=&(bptr->y[0]); i<maxpoints; i++, x++, y++) {
x[maxpoints] = screenwidth - 1 - *x ;
y[maxpoints] = screenheight - 1 - *y ;
}
setup:
x[maxpoints] = bptr->x[0] ;
y[maxpoints] = bptr->y[0] ;
x++, y++ ;
x[maxpoints] = bptr->x[1] ;
y[maxpoints] = bptr->y[1] ;
break ;
case 1:
x = &(bptr->x[0]) ;
y = &(bptr->y[0]) ;
goto setup ;
}
p = realfunc ;
x = &(bptr->x[0]) ;
y = &(bptr->y[0]) ;
while (*p < 20) {
(funcs[*p])(x, y) ;
i = advval[*p] ;
x += i ;
y += i ;
p++ ;
}
}
/*
* Initialize things for the first lines.
*/
startlines() {
register int i ;
ptr = store ;
eptr = store ;
numlines = 0 ;
if (dx[0] == 0) {
for (i=0; i<MAXPOINTS; i++) {
ox[i] = randm(screenwidth) ;
oy[i] = randm(screenheight) ;
dx[i] = 2 + randm(3) ;
dy[i] = 2 + randm(3) ;
}
}
nr = 53 ;
ng = 33 ;
nb = 35 ;
dr = -3 ;
dg = 5 ;
db = 7 ;
SetRGB4(&(globalblankscreen->ViewPort), 0L, 0L, 0L, 0L) ;
SetRGB4(&(globalblankscreen->ViewPort), 1L, (long)(nr >> 3),
(long)(ng >> 3), (long)(nb >> 3)) ;
for (i=0; i<maxlines; i++) {
advancelines() ;
drawnew() ;
}
}
/*
* Advance the number by the delta, and check the boundaries.
*/
adv(o, d, n, w)
register short *o, *d, *n ;
short w ;
{
*n = *o + *d ;
if (*n < 0) {
*n = 0 ;
*d = randm(6) + 1 ;
} else if (*n >= w) {
*n = w - 1 ;
*d = - randm(6) - 1 ;
}
}
/*
* Advance the two points which make up the lines.
*/
advancelines() {
register int i ;
for (i=0; i<maxpoints; i++) {
adv(ox+i, dx+i, nx+i, screenwidth) ;
adv(oy+i, dy+i, ny+i, screenheight) ;
}
}
/*
* Draw a new set of lines.
*/
drawnew() {
register int i ;
register short oldpen ;
register struct box *bptr ;
while (numlines >= maxlines) {
oldpen = rastport->FgPen ;
oldcol = 0xb0a ;
SetAPen(rastport, 0L) ;
bptr = eptr ;
drawfunc(bptr) ;
oldcol = 0xbfa ;
SetAPen(rastport, (long)oldpen) ;
numlines-- ;
bptr++ ;
if (bptr == store + MAXLINES)
bptr = store ;
eptr = bptr ;
}
bptr = ptr ;
for (i=0; i<maxpoints; i++) {
bptr->x[i] = ox[i] = nx[i] ;
bptr->y[i] = oy[i] = ny[i] ;
}
drawfunc(bptr) ;
numlines++ ;
bptr++ ;
if (bptr == store + MAXLINES) {
bptr = store ;
if (mdelta == 1) {
maxlines++ ;
if (maxlines >= MAXLINES - 1)
mdelta = -1 ;
} else {
maxlines-- ;
if (maxlines <= 2)
mdelta = 1 ;
}
}
ptr = bptr ;
}
/*
* This routine mucks with the colors.
*/
colors() {
or = nr ;
og = ng ;
ob = nb ;
adv(&or, &dr, &nr, 128) ;
adv(&og, &dg, &ng, 128) ;
adv(&ob, &db, &nb, 128) ;
SetRGB4(&(globalblankscreen->ViewPort), 1L, (long)(nr >> 3),
(long)(ng >> 3), (long)(nb >> 3)) ;
}
#define settime() {oldtime=0;}
#define gettime() (oldtime)
/*
* Our actual task, in an infinite loop.
*/
void taskrout() {
register struct Task *task ;
geta4() ;
settime() ;
makefunc() ;
task = FindTask(0L) ;
startlines() ;
colors() ;
while (SetSignal(0L, 0L)==0) {
if (task->tc_Node.ln_Pri == 10)
SetTaskPri(task, -20L) ;
advancelines() ;
drawnew() ;
advancelines() ;
drawnew() ;
if (task->tc_Node.ln_Pri == 10)
SetTaskPri(task, -20L) ;
advancelines() ;
drawnew() ;
advancelines() ;
drawnew() ;
if (task->tc_Node.ln_Pri == 10)
SetTaskPri(task, -20L) ;
advancelines() ;
drawnew() ;
advancelines() ;
drawnew() ;
colors() ;
if (gettime() >= 60) {
settime() ;
makefunc() ;
SetRast(rastport, 0L) ;
startlines() ;
}
}
done:
Signal(globalbuddy, 1L << globalreplysignum) ;
Wait(0L) ;
}
static int nevercli ;
#ifdef HELPKEY
/*
* Now we do hotkey magic to activate windows, bring them to front,
* etc.
*
* Now we have a key, so we have to find a process with that name and
* bring her to front. For now, we just deal with tasks, since the
* CLI stuff is so complicated.
*/
#define MAXMATCH (20)
char simplematch[3] = { ' ', '*', 0 } ;
struct Window *matchwindows[MAXMATCH] ;
extern long LockIBase() ;
windowtofront(key, qual)
char key ;
{
long foo ;
register int i, j ;
int n ;
register struct Window *w ;
struct Screen *s ;
struct Process *p ;
struct MsgPort **mp ;
struct CommandLineInterface *CLI ;
int cli ;
char *nameptr, *matchptr ;
extern struct DosLibrary *DOSBase ;
register struct hotkey *hk ;
int shift, ctrl ;
struct Window *activewindow ;
/*
* First we look for a matching record.
*/
if (key == '.')
goto goner ;
shift = ((qual & (IEQUALIFIER_LSHIFT | IEQUALIFIER_RSHIFT)) != 0) ;
ctrl = ((qual & IEQUALIFIER_CONTROL) != 0) ;
activewindow = NULL ;
for (hk=hotkeys; hk; hk=hk->next)
if (hk->key == key &&
(hk->flags & SHIFT) == shift)
break ;
cli = 0 ;
if (hk && hk->matchstring)
matchptr = hk->matchstring ;
else {
matchptr = simplematch ;
if (key == ' ')
matchptr++ ;
else if ('A' <= key && key <= 'Z')
simplematch[0] = key ;
else if ('0' <= key && key <= '9') {
cli = key ;
if (cli == '0')
cli += 10 ;
matchptr++ ;
} else
goto goner ;
}
n = 0 ;
foo = LockIBase(0L) ;
if (! ctrl && !(hk && (hk->flags & NOTINTUITION)) && !cli) {
for (s=IntuitionBase->FirstScreen; s; s=s->NextScreen)
for (w=s->FirstWindow; w; w=w->NextWindow) {
if (w->UserPort) {
p = (struct Process *)(w->UserPort->mp_SigTask) ;
if (((struct Task *)p)->tc_Node.ln_Type == NT_PROCESS) {
if (p->pr_CLI) {
CLI = (struct CommandLineInterface *)BSTRtoS(p->pr_CLI) ;
if (bstrcmp(BSTRtoS((CLI)->cli_CommandName), matchptr) &&
n < MAXMATCH) {
if (w==IntuitionBase->ActiveWindow)
activewindow = w ;
matchwindows[n++] = w ;
}
} else {
if (sstrcmp(((struct Task *)p)->tc_Node.ln_Name, matchptr)
&& n < MAXMATCH) {
if (w==IntuitionBase->ActiveWindow)
activewindow = w ;
matchwindows[n++] = w ;
}
}
}
}
}
}
/*
* Folks, there are still several/many windows of vulnerability
* here; I'll have to plug them. For instance, what happens if a
* CLI goes away while we are doing this? Or what happens if a
* window goes away later, when we are looking at IntuitionBase?
*/
if (! ctrl && !(hk && (hk->flags & NOTCLI))) {
mp = (struct MsgPort **)BSTRtoS(*(DOSBase->dl_Root)) ;
for (j=1; j<(long)(mp[0]); j++)
if (j != nevercli && mp[j] && (cli == 0 || j == cli - '0')) {
p = (struct Process *)(mp[j]->mp_SigTask) ;
CLI = (struct CommandLineInterface *)BSTRtoS(p->pr_CLI) ;
if (!CLI->cli_Background &&
bstrcmp(BSTRtoS((CLI)->cli_CommandName), matchptr)) {
infoptr->id_VolumeNode = NULL ;
dos_packet(p->pr_ConsoleTask, ACTION_DISK_INFO,
((long)(infoptr)) >> 2, 0L, 0L, 0L, 0L, 0L, 0L) ;
if (w=(struct Window *)infoptr->id_VolumeNode)
if (n < MAXMATCH) {
if (w==IntuitionBase->ActiveWindow)
activewindow = w ;
matchwindows[n++] = w ;
}
}
}
}
if (shift)
key += 100 ;
if (ctrl || n==0) {
UnlockIBase(foo) ;
if (hk == NULL || hk->startstring == NULL)
goto goner ;
prito(0) ;
Execute(hk->startstring, 0L, 0L) ;
prito(20) ;
} else {
if (n == 1) {
w = matchwindows[0] ;
} else {
/*
* This is some real neat code. We want to find the next window,
* that is, the window with the least address greater than the
* currently active window, unless the currently active window
* has the highest address, in which case we want to find the
* window with the least address. Why this works is left as a
* puzzle for the reader.
*/
if (activewindow) {
w = activewindow ;
for (j=0; j<n; j++)
if ((w > activewindow) ^
(w > matchwindows[j]) ^
(matchwindows[j] > activewindow))
w = matchwindows[j] ;
} else {
w = NULL ;
for (j=0; j<n; j++)
if (lastwindows[key]==matchwindows[j]) {
w = lastwindows[key] ;
break ;
}
if (w==NULL)
w = matchwindows[0] ;
}
}
lastwindows[key] = w ;
s = w->WScreen ;
UnlockIBase(foo) ;
ScreenToFront(s) ;
/*
* If only one window on screen, don't bring it to front
* (mostly for DPaint, but for other progs as well.)
* (Anyone know an easy way to see if this window is fully
* exposed?)
*/
if (s->FirstWindow != w || w->NextWindow)
WindowToFront(w) ;
ActivateWindow(w) ;
}
return ;
goner:
DisplayBeep(0L) ;
}
#endif
/*
* These two functions compare a given string `s' with a `key' string.
* The key string should be all upper case; this is a case insensitive
* match. If the key string contains `*', this character is assumed to
* match the rest of the string (and it can only come at the end.) We
* have a routine for BSTR's, and a routine for regular strings.
*/
int sstrcmp(s, key)
register char *s, *key ;
{
while (1) {
if (*key == '*')
return(1) ;
if (*key == 0)
return(*s == 0) ;
if (*s == 0)
return(0) ;
if (*s != *key &&
(*s != *key + 32 || *s < 'a' || *s > 'z'))
return(0) ;
s++ ;
key++ ;
}
}
/*
* This is the same as above, only instead of using a null to
* end the string, we keep track of the number of characters.
*/
int bstrcmp(s, key)
register char *s, *key ;
{
register int n ;
register char *p ;
register int nn ;
n = *(unsigned char *)s++ ;
nn = n ;
for (p=s; *p > ' ' && nn > 0; p++, nn--)
if (*p == '/' || *p == ':') {
s = p + 1 ;
n = nn - 1 ;
}
while (1) {
if (*key == '*')
return(1) ;
if (*key == 0)
return(n == 0) ;
if (n == 0)
return(0) ;
if (*s != *key &&
(*s != *key + 32 || *s < 'a' || *s > 'z'))
return(0) ;
s++ ;
key++ ;
n-- ;
}
}
/*
* A place to hold an input line.
*/
#define MAXSTARTUPLINE (100)
char startbuf[MAXSTARTUPLINE] ;
char upline[MAXSTARTUPLINE] ;
/*
* Is a legit separator of some sort.
*/
int issep(s)
register char s ;
{
return (s <= ' ' || s == '=' || s == ':' || s == ',' || s == '-') ;
}
/*
* Go to next `word' in the startup file.
*/
char *getword(s)
register char *s ;
{
while (*s && issep(*s))
s++ ;
return(s) ;
}
int getint(s)
register char *s ;
{
register int t = 0 ;
while (*s <= ' ' && *s)
s++ ;
while ('0' <= *s && *s <= '9')
t = t * 10 + *s++ - '0' ;
return(t) ;
}
/*
* Upper case a string.
*/
char *upcase(dest, s)
char *dest ;
register char *s ;
{
register char *d = dest ;
while (*s) {
if ('a' <= *s && *s <= 'z')
*d++ = *s++ - 32 ;
else
*d++ = *s++ ;
}
*d = 0 ;
return(dest) ;
}
/*
* Say we got a bad line.
*/
badline() {
puts("Error in startup file!") ;
puts(startbuf) ;
}
/*
* Copies a string from one place to another; string delimited by
* double quotes.
*/
char *cpystr(dest, src)
register char *dest, *src ;
{
if (*src != '"')
badline() ;
else {
src++ ;
while (*src != '"' && *src != 0) {
if (*src == '\\' && src[1] != 0)
src++ ;
*dest++ = *src++ ;
}
if (*src)
src++ ;
}
*dest = 0 ;
return(getword(src)) ;
}
/*
* Handle a single startup line that's not a comment and non-empty
* and been converted to all upper case.
*/
parseline(s, msg)
register char *s ;
struct OURMSG *msg ;
{
int flags ;
register short t ;
register int key ;
char *p ;
register struct hotkey *hk ;
flags = 0 ;
if (strncmp(s, "COMMAND", 7)==0) {
s = getword(s+7) ;
cpystr(msg->cmd, s) ;
} else if (strncmp(s, "TIMEOUT", 7)==0) {
t = getint(s+7) ;
if (t < 0)
t = DEFTIME ;
msg->interval = t ;
} else if (strncmp(s, "LINES", 5)==0) {
msg->draw = 1 ;
} else if (strncmp(s, "NEVER", 5)==0) {
nevercli = getint(s+5) ;
} else if (strncmp(s, "BLANK", 5)==0) {
msg->draw = -1 ;
} else {
if (strncmp(s, "SHIFT", 5)==0) {
flags = SHIFT ;
s = getword(s+5) ;
}
if (*s == 0)
badline() ;
else {
if (issep(s[1]) &&
(('A' <= *s && *s <= 'Z') ||
('0' <= *s && *s <= '9'))) {
key = *s ;
s = getword(s+1) ;
} else if (strncmp(s, "SPACE", 5)==0) {
key = ' ' ;
s = getword(s+5) ;
} else if (*s == 'F' && ('1' <= s[1] && s[1] <= '9')) {
s++ ;
t = *s++ - '0' ;
if (t == 1 && *s == '0') {
t = 10 ;
s++ ;
}
key = t ;
s = getword(s) ;
} else {
badline() ;
return ;
}
if (strncmp(s, "INTUITION", 9)==0) {
flags |= NOTCLI ;
s = getword(s+9) ;
} else if (strncmp(s, "CLI", 3)==0) {
flags |= NOTINTUITION ;
s = getword(s+3) ;
}
s = cpystr(upline, s) ;
p = upline + strlen(upline) + 1 ;
if (*s)
cpystr(p, startbuf + (s-upline)) ;
else
*p = 0 ;
t = sizeof(struct hotkey) + strlen(p) + strlen(upline) ;
hk = AllocMem((long)t, MEMF_CLEAR | MEMF_PUBLIC) ;
if (hk) {
hk->key = key ;
hk->flags = flags ;
hk->next = hotkeys ;
hk->structlen = t ;
hk->matchstring = strcpy(hk->strings, upline) ;
hk->startstring = strcpy(hk->strings + strlen(upline) + 1, p) ;
if (hk->startstring[0]==0)
hk->startstring = NULL ;
hotkeys = hk ;
} else
puts("Out of memory in startup") ;
}
}
}
/*
* Handle the startup file.
*/
processstartup(s, msg)
char *s ;
struct OURMSG *msg ;
{
FILE *f ;
register char *p ;
if (f=fopen(s, "r")) {
while (fgets(startbuf, MAXSTARTUPLINE, f)) {
p = getword(startbuf) ;
if (*p != '*' && *p != '#' && *p != ';' && *p != 0) {
upcase(upline, p) ;
parseline(upline, msg) ;
}
}
fclose(f) ;
} else {
puts("Couldn't open startup file:") ;
puts(s) ;
}
}
#ifdef HELPKEY
/*
* This stuff down here handles the raw key conversion stuff
* properly. Thanks to Willy Langeveld and Carolyn Scheppner.
*/
char *dos_rkcv();
int dos_rkcvinit(), dos_rkcvexit();
struct IOStdReq ConStdReq;
/*
* This code won't compile under Manx unless you delete the
* `ConsoleDevice' function in functions.h, or perform a kludge
* like the one I did when I included it. Why the hell does
* Manx have that in there? If you try to use it, it comes out
* undefined, but if you rename the following, it won't link
* because it needs the function `ConsoleDevice'.
*/
long ConsoleDevice ;
/**
*
* Calling sequence:
* =================
*
* result = (char *) dos_rkcv(code, buffer, length);
*
* Description:
* ============
*
* Covert raw key number to array of console device ascii text
* using the default keymap.
*
* Inputs:
* =======
*
* int code Raw key number.
* int qual Qualifier.
* char *buffer Pointer to an array of char to receive the
* conversion.
* int length length of buffer.
*
* Outputs:
* ========
*
* F. value: NULL on conversion failure, or pointer to
* buffer on success.
*
**/
char *dos_rkcv(code, qual, buffer, length)
int code;
int qual;
char *buffer;
int length;
{
static struct InputEvent event;
event.ie_Class = IECLASS_RAWKEY;
event.ie_Code = code;
event.ie_Qualifier = qual;
if (RawKeyConvert(&event, buffer, (long) length, NULL) == 0L) return(0L);
return(buffer);
}
/**
*
* Calling sequence:
* =================
*
* error = dos_rkcvinit();
*
* Description:
* ============
*
* Open the Console device for later use with dos_rkcv().
*
* Inputs:
* =======
*
* None
*
* Outputs:
* ========
*
* F. value: 1 on failure, zero otherwise.
*
*
**/
int dos_rkcvinit()
{
if (OpenDevice("console.device", -1L, &ConStdReq, 0L) != NULL) {
ConsoleDevice = 0L;
return(1);
}
else {
ConsoleDevice = (long) ConStdReq.io_Device;
return(0);
}
}
/**
*
* Calling sequence:
* =================
*
* error = dos_rkcvexit();
*
* Description:
* ============
*
* Close the Console device after use with dos_rkcv().
*
* Inputs:
* =======
*
* None
*
* Outputs:
* ========
*
* F. value: Always zero;
*
**/
int dos_rkcvexit()
{
if (ConsoleDevice) CloseDevice(&ConStdReq);
return(0);
}
/*
* Set up the key conversion table. Note that the buffer has to be
* long word aligned!
*/
initkeytoasc() {
register int i ;
char buf[100] ;
for (i=0; i<128; i++)
keytoasc[i] = '.' ;
if (dos_rkcvinit())
return(1) ;
for (i=0; i<128; i++) {
buf[1] = 0 ;
if (dos_rkcv(i, 0, buf, 100) && buf[1] == 0 &&
(buf[0] == ' ' ||
('a' <= buf[0] && buf[0] <= 'z' && (buf[0] -= 32)) ||
('0' <= buf[0] && buf[0] <= '9'))) {
keytoasc[i] = buf[0] ;
}
}
/*
* Have to handle the function keys separately
*/
for (i=80; i<90; i++)
keytoasc[i] = i-79 ;
dos_rkcvexit() ;
return(0) ;
}
#endif
/*
* Save a byte or two.
*/
_wb_parse() {}