1996-11-02 10:00:46 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Damien Doligez, projet Para, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1996-11-02 10:00:46 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <CursorCtl.h>
|
1999-11-08 09:11:23 -08:00
|
|
|
#include <MacTypes.h>
|
1996-11-02 10:00:46 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <Timer.h>
|
|
|
|
|
|
|
|
#include "rotatecursor.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
TMTask t;
|
|
|
|
int volatile *p1;
|
|
|
|
int volatile *p2;
|
|
|
|
} Xtmtask;
|
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
int volatile rotatecursor_flag = 1;
|
|
|
|
static int rotatecursor_inited = 0;
|
|
|
|
static int rotatecursor_period = 50;
|
|
|
|
static Xtmtask rotatecursor_tmtask;
|
1996-11-02 10:00:46 -08:00
|
|
|
|
|
|
|
|
|
|
|
#if GENERATINGCFM
|
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
static void rotatecursor_timerproc (Xtmtask *p)
|
1996-11-02 10:00:46 -08:00
|
|
|
{
|
|
|
|
if (p->p1 != NULL && *(p->p1) == 0) *(p->p1) = 1;
|
|
|
|
if (p->p2 != NULL && *(p->p2) == 0) *(p->p2) = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
extern Xtmtask *getparam() ONEWORDINLINE(0x2009); /* MOVE.L A1, D0 */
|
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
static void rotatecursor_timerproc (void)
|
1996-11-02 10:00:46 -08:00
|
|
|
{
|
|
|
|
register Xtmtask *p = getparam ();
|
1998-10-02 06:02:32 -07:00
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
if (p->p1 != NULL && *(p->p1) == 0) *(p->p1) = 1;
|
|
|
|
if (p->p2 != NULL && *(p->p2) == 0) *(p->p2) = 1;
|
1996-11-02 10:00:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GENERATINGCFM */
|
|
|
|
|
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
static void rotatecursor_remove_task (void)
|
1996-11-02 10:00:46 -08:00
|
|
|
{
|
1999-11-08 09:11:23 -08:00
|
|
|
RmvTime ((QElemPtr) &rotatecursor_tmtask);
|
1996-11-02 10:00:46 -08:00
|
|
|
}
|
|
|
|
|
1999-11-08 09:11:23 -08:00
|
|
|
static void rotatecursor_init (void)
|
1996-11-02 10:00:46 -08:00
|
|
|
{
|
1999-11-08 09:11:23 -08:00
|
|
|
if (rotatecursor_inited) return;
|
|
|
|
|
1996-11-02 10:00:46 -08:00
|
|
|
InitCursorCtl (NULL);
|
1999-11-08 09:11:23 -08:00
|
|
|
|
|
|
|
rotatecursor_tmtask.t.tmAddr = NewTimerProc (rotatecursor_timerproc);
|
|
|
|
rotatecursor_tmtask.t.tmWakeUp = 0;
|
|
|
|
rotatecursor_tmtask.t.tmReserved = 0;
|
|
|
|
rotatecursor_tmtask.p1 = NULL;
|
|
|
|
rotatecursor_tmtask.p2 = &rotatecursor_flag;
|
|
|
|
|
|
|
|
InsTime ((QElemPtr) &rotatecursor_tmtask);
|
|
|
|
PrimeTime ((QElemPtr) &rotatecursor_tmtask, 1);
|
|
|
|
|
|
|
|
atexit (rotatecursor_remove_task);
|
|
|
|
|
|
|
|
rotatecursor_inited = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rotatecursor_options (int volatile *p1, int period)
|
|
|
|
{
|
|
|
|
if (!rotatecursor_inited) rotatecursor_init ();
|
|
|
|
|
|
|
|
rotatecursor_tmtask.p1 = p1;
|
|
|
|
rotatecursor_period = period;
|
1996-11-02 10:00:46 -08:00
|
|
|
}
|
|
|
|
|
1997-11-12 10:59:32 -08:00
|
|
|
int rotatecursor_action (int reverse)
|
1996-11-02 10:00:46 -08:00
|
|
|
{
|
1999-11-08 09:11:23 -08:00
|
|
|
if (!rotatecursor_inited) rotatecursor_init ();
|
|
|
|
|
|
|
|
rotatecursor_flag = 0;
|
|
|
|
|
|
|
|
PrimeTime ((QElemPtr) &rotatecursor_tmtask, rotatecursor_period);
|
|
|
|
|
1997-11-12 10:59:32 -08:00
|
|
|
RotateCursor (reverse ? -32 : 32);
|
1999-11-08 09:11:23 -08:00
|
|
|
|
1996-11-02 10:00:46 -08:00
|
|
|
return 0;
|
|
|
|
}
|