home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
dev
/
cmanual-3.0.lha
/
CManual
/
Devices
/
GameportDevice
/
Example3.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-12
|
17KB
|
488 lines
/***********************************************************/
/* */
/* Amiga C Encyclopedia (ACE) V3.0 Amiga C Club (ACC) */
/* ------------------------------- ------------------ */
/* */
/* Book: ACM Devices Amiga C Club */
/* Chapter: Gameport Device Tulevagen 22 */
/* File: Example3.c 181 41 LIDINGO */
/* Author: Anders Bjerin SWEDEN */
/* Date: 92-04-27 */
/* Version: 1.00 */
/* */
/* Copyright 1992, Anders Bjerin - Amiga C Club (ACC) */
/* */
/* Registered members may use this program freely in their */
/* own commercial/noncommercial programs/articles. */
/* */
/***********************************************************/
/* This program demonstrates how you can use the */
/* Gameport Device to read mouse events. The */
/* program will report any mouse movements or if */
/* any buttons was pressed/released. If the user */
/* has not used the mouse for one minnute, the */
/* program will terminate. */
/* */
/* This example is "nice" to the system and does */
/* everything according to the "rules". */
/* */
/* While we are waiting for something to happen */
/* our task is put to sleep, so we do not waste */
/* any computer time. However, if you want to do */
/* something while you are waiting, see next */
/* example. */
/* */
/* NOTE! Since Intuition is already using port 1 */
/* (the "mouse port") we have to use port 2. So */
/* remember to connect the mouse to port 2, */
/* before you run the program. */
#include <exec/types.h> /* UWORD, STRPTR */
#include <devices/gameport.h> /* GPCT_MOUSE */
#include <devices/inputevent.h> /* struct InputEvent */
#define RIGHTGAMEPORT 1 /* The "Joystick" port. */
#define LEFTGAMEPORT 0 /* The "Mouse" port. */
#define MINX 5 /* The mouse must be moved at least 5 stepps */
#define MINY 5 /* before a mouse event should occure. */
/* Pointer to the Graphics library: */
struct GfxBase *GfxBase;
struct IOStdReq *game_io_msg; /* Pointer to our IOStdReq str. */
struct MsgPort *game_msg_port; /* Pointer to our message port. */
BOOL deviceerror; /* Have we opened the device, OK? */
int counter;
/* Declare some external functions: */
/* (We must otherwise do so much casting.) */
extern struct MsgPort *CreatePort();
extern struct IOStdReq *CreateStdIO();
/* Declare all functions in this module: */
void main();
void PrintMouseData(); /* Print some information about the mouse. */
BYTE SetControllerType(); /* Set type of controller. */
BYTE SetControllerTrigger(); /* Set trigger. */
void SetControllerRead(); /* Prepare it so we can read. */
BYTE GetControllerType(); /* Get type of controller already coneccted. */
void clean_up(); /* Cleanup, and quit. */
void main()
{
/* Put all data in this structure: */
struct InputEvent gamedata;
BYTE type;
/* Open the Graphics library: */
GfxBase = (struct GfxBase *)
OpenLibrary( "graphics.library", 0 );
if( !GfxBase )
clean_up( "ERROR! Could not open the Graphics library!" );
/* 1. Create a message port so the system can communicate with us: */
game_msg_port = CreatePort( 0, 0 );
if( !game_msg_port )
clean_up( "ERROR! Could not create message port!" );
/* 2. Allocate and initialize a new I/O request block. */
/* It should use our new message port as reply port: */
game_io_msg = CreateStdIO( game_msg_port );
if( !game_io_msg )
clean_up( "ERROR! Could not allocate new I/O request block!" );
/* 3. Open the Game Port Device, use the right port: */
/* (Intuition is already using the left port!) */
deviceerror = OpenDevice( "gameport.device", RIGHTGAMEPORT, game_io_msg, 0xFFFF );
if( deviceerror )
clean_up( "ERROR! Could not open the Game Port Device!" );
/* 4. Check if some other task is already using the gameport: */
if( type = GetControllerType() )
{
switch( type )
{
case GPCT_MOUSE:
printf( "A mouse is connected to the port!\n" );
break;
case GPCT_RELJOYSTICK:
printf( "A proportional joystick is connected to the port!\n" );
break;
case GPCT_ABSJOYSTICK:
printf( "A normal joystick is connected to the port!\n" );
break;
}
/* Do not close the device! If we do it, the other task will */
/* then not be able to use the gameport device either! */
deviceerror = TRUE;
clean_up( "ERROR! Some other task is already using the Gameport!" );
}
/* 5. Set device type (mouse): */
if( SetControllerType( GPCT_MOUSE ) )
clean_up( "ERROR! Could not set device type!" );
/* 6. Set device trigger: */
if( SetControllerTrigger
( /* Report following events: */
GPTF_DOWNKEYS|GPTF_UPKEYS, /* buttonpressed/released, */
600, /* every 10th second, */
MINX, /* X movements more than MINX, */
MINY /* Y movements more than MINY. */
)
)
clean_up( "ERROR! Could not set device trigger!" );
/* 7. Prepare the device to read: */
SetControllerRead( &gamedata );
printf( "Gameport Device - Mouse Example - Waiting\n" );
/* Stay in the while loop until the user has not moved the */
/* mouse during the last minute: (6 times 10 seconds) */
while( counter < 6 )
{
printf("\nWaiting... ");
/* Do our request, and return without delay: */
SendIO( game_io_msg );
/* Wait for a message to arrive at our message port. */
/* While we are waiting our task is put to sleep, */
/* which means that we will not waste any computer */
/* time. Zzz Zzz Zzz... */
WaitPort( game_msg_port );
/* Try to collect a message: */
if( GetMsg( game_msg_port ) )
{
/* Print some information abut the mouse: */
PrintMouseData( &gamedata );
}
}
/* 8. Clean up nicely, and quit: */
clean_up( "The End!" );
}
/****************************************************************/
/* */
/* PrintMouseData() prints how many x/y counts the mouse has */
/* been moved, and if any buttons has been pressed or released. */
/* */
/* Synopsis: PrintMouseData( data ); */
/* */
/* data: (struct InputEvent *) Pointer to an InputEvent */
/* structure which has previously been initialized. */
/* */
/****************************************************************/
void PrintMouseData( data )
struct InputEvent *data;
{
WORD x;
WORD y;
UWORD code;
/* Collect data: */
x = data->ie_X;
y = data->ie_Y;
code = data->ie_Code;
/* Print: */
switch( code )
{
case IECODE_LBUTTON:
printf( "Left mouse button pressed" );
counter = 0;
break;
case IECODE_RBUTTON:
printf( "Right mouse button pressed" );
counter = 0;
break;
case IECODE_LBUTTON + IECODE_UP_PREFIX:
printf( "Left mouse button released" );
counter = 0;
break;
case IECODE_RBUTTON + IECODE_UP_PREFIX:
printf( "Right mouse button rel