Search
lxdream.org :: lxdream/src/maple/maple.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/maple/maple.h
changeset 838:9abb2fa58934
prev770:429ff505c450
next850:28782ebbd01d
author nkeynes
date Tue Sep 02 00:42:43 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Add flag to maple devices indicating whether they need a mouse grab to operate
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Maple bus definitions
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_maple_H
    20 #define lxdream_maple_H 1
    22 #ifdef __cplusplus
    23 extern "C" {
    24 #endif
    26 #include <stdint.h>
    27 #include "config.h"
    29 #define MAPLE_CMD_INFO        1  /* Request device information */
    30 #define MAPLE_CMD_EXT_INFO    2  /* Request extended information */
    31 #define MAPLE_CMD_RESET       3  /* Reset device */
    32 #define MAPLE_CMD_SHUTDOWN    4  /* Shutdown device */
    33 #define MAPLE_CMD_GET_COND    9  /* Get condition */
    34 #define MAPLE_CMD_MEM_INFO    10 /* Get memory information */
    35 #define MAPLE_CMD_READ_BLOCK  11 /* Block read */
    36 #define MAPLE_CMD_WRITE_BLOCK 12 /* Block write */
    37 #define MAPLE_CMD_SET_COND    14 /* Set condition */
    38 #define MAPLE_RESP_INFO       5  /* Device information response */
    39 #define MAPLE_RESP_EXT_INFO   6  /* Extended device information response */
    40 #define MAPLE_RESP_ACK        7  /* Acknowledge command */
    41 #define MAPLE_RESP_DATA       8  /* Bytes read */
    42 #define MAPLE_ERR_NO_RESPONSE -1 /* Device did not respond */
    43 #define MAPLE_ERR_FUNC_UNSUP  -2 /* Function code unsupported */
    44 #define MAPLE_ERR_CMD_UNKNOWN -3 /* Command code unknown */
    45 #define MAPLE_ERR_RETRY       -4 /* Retry command */
    46 #define MAPLE_ERR_FILE        -5 /* File error? */
    48 #define MAPLE_FUNC_CONTROLLER 0x01000000
    49 #define MAPLE_FUNC_MEMORY     0x02000000
    50 #define MAPLE_FUNC_LCD        0x04000000
    51 #define MAPLE_FUNC_CLOCK      0x08000000
    52 #define MAPLE_FUNC_MICROPHONE 0x10000000
    53 #define MAPLE_FUNC_AR_GUN     0x20000000
    54 #define MAPLE_FUNC_KEYBOARD   0x40000000
    55 #define MAPLE_FUNC_LIGHT_GUN  0x80000000
    56 #define MAPLE_FUNC_PURU_PURU  0x00010000
    57 #define MAPLE_FUNC_MOUSE      0x00020000
    59 #define MAPLE_GRAB_DONTCARE   0
    60 #define MAPLE_GRAB_YES        1
    61 #define MAPLE_GRAB_NO         2
    63 #define MAPLE_DEVICE_TAG 0x4D41504C
    64 #define MAPLE_DEVICE(x) ((maple_device_t)x)
    66 typedef const struct maple_device_class *maple_device_class_t;
    67 typedef struct maple_device *maple_device_t;
    69 struct maple_device_class {
    70     const char *name;
    71     maple_device_t (*new_device)();
    72 };
    74 /**
    75  * Table of functions to be implemented by any maple device.
    76  */
    77 struct maple_device {
    78     uint32_t _tag;
    79     maple_device_class_t device_class;
    80     int grab_mode;
    81     unsigned char ident[112];
    82     unsigned char version[80];
    83     lxdream_config_entry_t (*get_config)(struct maple_device *dev);
    84     void (*set_config_value)(struct maple_device *dev, unsigned int key, const gchar *value);
    85     void (*attach)(struct maple_device *dev);
    86     void (*detach)(struct maple_device *dev);
    87     void (*destroy)(struct maple_device *dev);
    88     struct maple_device * (*clone)(struct maple_device *dev);
    89     int (*reset)(struct maple_device *dev);
    90     int (*shutdown)(struct maple_device *dev);
    91     int (*get_condition)(struct maple_device *dev,
    92                          int function, unsigned char *outbuf, unsigned int *buflen);
    93     int (*set_condition)(struct maple_device *dev,
    94                          int function, unsigned char *inbuf, unsigned int buflen);
    95     int (*read_block)(struct maple_device *dev,
    96                       int function, uint32_t block, unsigned char *outbuf, unsigned int *buflen);
    97     int (*write_block)(struct maple_device *dev,
    98                        int function, uint32_t block, unsigned char *inbuf, unsigned int buflen);
    99 };
   101 extern struct maple_device_class controller_class;
   102 extern struct maple_device_class keyboard_class;
   103 extern struct maple_device_class mouse_class;
   105 maple_device_t maple_new_device( const gchar *name );
   106 maple_device_t maple_get_device( unsigned int port, unsigned int periph );
   107 const struct maple_device_class *maple_get_device_class( const gchar *name );
   108 const struct maple_device_class **maple_get_device_classes();
   109 lxdream_config_entry_t maple_get_device_config( maple_device_t dev );
   110 void maple_set_device_config_value( maple_device_t dev, unsigned int key, const gchar *value );
   112 void maple_handle_buffer( uint32_t buffer );
   113 void maple_attach_device( maple_device_t dev, unsigned int port, unsigned int periph );
   114 void maple_detach_device( unsigned int port, unsigned int periph );
   115 void maple_detach_all( );
   116 void maple_reattach_all( );
   117 gboolean maple_should_grab();
   119 /**
   120  * Default destroy implementation that just frees the dev memory.
   121  */
   122 void maple_default_destroy( maple_device_t dev );
   124 #ifdef __cplusplus
   125 }
   126 #endif
   128 #endif /* !lxdream_maple_H */
.