2001-10-06 14:13:28 +00:00
|
|
|
#ifndef PROTOCOLTYPES_H
|
|
|
|
#define PROTOCOLTYPES_H
|
|
|
|
|
|
|
|
#include "BasicTypes.h"
|
|
|
|
|
|
|
|
// version number
|
2002-06-04 11:06:26 +00:00
|
|
|
static const SInt16 kProtocolMajorVersion = 0;
|
|
|
|
static const SInt16 kProtocolMinorVersion = 1;
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-06-09 16:53:25 +00:00
|
|
|
// contact port number
|
|
|
|
static const UInt16 kDefaultPort = 24800;
|
|
|
|
|
2002-04-27 14:19:53 +00:00
|
|
|
//
|
|
|
|
// message codes (trailing NUL is not part of code). in comments, $n
|
|
|
|
// refers to the n'th argument (counting from one). message codes are
|
|
|
|
// always 4 bytes optionally followed by message specific parameters.
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// command codes
|
|
|
|
//
|
|
|
|
|
|
|
|
// close connection; primary -> secondary
|
|
|
|
static const char kMsgCClose[] = "CBYE";
|
|
|
|
|
|
|
|
// enter screen: primary -> secondary
|
|
|
|
// entering screen at screen position $1 = x, $2 = y. x,y are
|
2002-04-29 13:31:44 +00:00
|
|
|
// absolute screen coordinates. $3 = sequence number, which is
|
|
|
|
// used to order messages between screens. the secondary screen
|
2002-04-30 17:48:11 +00:00
|
|
|
// must return this number with some messages. $4 = modifier key
|
|
|
|
// mask. this will have bits set for each toggle modifier key
|
|
|
|
// that is activated on entry to the screen. the secondary screen
|
|
|
|
// should adjust its toggle modifiers to reflect that state.
|
|
|
|
static const char kMsgCEnter[] = "CINN%2i%2i%4i%2i";
|
2002-04-27 14:19:53 +00:00
|
|
|
|
|
|
|
// leave screen: primary -> secondary
|
2002-04-29 13:31:44 +00:00
|
|
|
// leaving screen. the secondary screen should send clipboard
|
|
|
|
// data in response to this message for those clipboards that
|
|
|
|
// it has grabbed (i.e. has sent a kMsgCClipboard for and has
|
|
|
|
// not received a kMsgCClipboard for with a greater sequence
|
|
|
|
// number) and that were grabbed or have changed since the
|
|
|
|
// last leave.
|
2002-04-27 14:19:53 +00:00
|
|
|
static const char kMsgCLeave[] = "COUT";
|
|
|
|
|
|
|
|
// grab clipboard: primary <-> secondary
|
|
|
|
// sent by screen when some other app on that screen grabs a
|
2002-04-29 13:31:44 +00:00
|
|
|
// clipboard. $1 = the clipboard identifier, $2 = sequence number.
|
|
|
|
// secondary screens must use the sequence number passed in the
|
|
|
|
// most recent kMsgCEnter. the primary always sends 0.
|
|
|
|
static const char kMsgCClipboard[] = "CCLP%1i%4i";
|
2002-04-27 14:19:53 +00:00
|
|
|
|
|
|
|
// screensaver change: primary -> secondary
|
|
|
|
// screensaver on primary has started ($1 == 1) or closed ($1 == 0)
|
|
|
|
static const char kMsgCScreenSaver[] = "CSEC%1i";
|
|
|
|
|
2002-05-24 17:54:28 +00:00
|
|
|
// resolution change acknowledgment: primary -> secondary
|
|
|
|
// sent by primary in response to a secondary screen's kMsgDInfo.
|
|
|
|
// this is sent for every kMsgDInfo, whether or not the primary
|
|
|
|
// had sent a kMsgQInfo.
|
|
|
|
static const char kMsgCInfoAck[] = "CIAK";
|
|
|
|
|
2002-04-27 14:19:53 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// data codes
|
|
|
|
//
|
|
|
|
|
|
|
|
// key pressed: primary -> secondary
|
|
|
|
// $1 = KeyID, $2 = KeyModifierMask
|
|
|
|
static const char kMsgDKeyDown[] = "DKDN%2i%2i";
|
|
|
|
|
|
|
|
// key auto-repeat: primary -> secondary
|
|
|
|
// $1 = KeyID, $2 = KeyModifierMask, $3 = number of repeats
|
|
|
|
static const char kMsgDKeyRepeat[] = "DKRP%2i%2i%2i";
|
|
|
|
|
|
|
|
// key released: primary -> secondary
|
|
|
|
// $1 = KeyID, $2 = KeyModifierMask
|
|
|
|
static const char kMsgDKeyUp[] = "DKUP%2i%2i";
|
|
|
|
|
|
|
|
// mouse button pressed: primary -> secondary
|
|
|
|
// $1 = ButtonID
|
|
|
|
static const char kMsgDMouseDown[] = "DMDN%1i";
|
|
|
|
|
|
|
|
// mouse button released: primary -> secondary
|
|
|
|
// $1 = ButtonID
|
|
|
|
static const char kMsgDMouseUp[] = "DMUP%1i";
|
|
|
|
|
|
|
|
// mouse moved: primary -> secondary
|
|
|
|
// $1 = x, $2 = y. x,y are absolute screen coordinates.
|
|
|
|
static const char kMsgDMouseMove[] = "DMMV%2i%2i";
|
|
|
|
|
|
|
|
// mouse button pressed: primary -> secondary
|
2002-05-24 17:54:28 +00:00
|
|
|
// $1 = delta. the delta should be +120 for one tick forward (away
|
|
|
|
// from the user) and -120 for one tick backward (toward the user).
|
2002-04-27 14:19:53 +00:00
|
|
|
static const char kMsgDMouseWheel[] = "DMWM%2i";
|
|
|
|
|
|
|
|
// clipboard data: primary <-> secondary
|
|
|
|
// $2 = sequence number, $3 = clipboard data. the sequence number
|
2002-04-29 13:31:44 +00:00
|
|
|
// is 0 when sent by the primary. secondary screens should use the
|
|
|
|
// sequence number from the most recent kMsgCEnter. $1 = clipboard
|
|
|
|
// identifier.
|
2002-04-27 14:19:53 +00:00
|
|
|
static const char kMsgDClipboard[] = "DCLP%1i%4i%s";
|
|
|
|
|
2002-04-27 18:06:40 +00:00
|
|
|
// client data: secondary -> primary
|
2002-04-27 14:19:53 +00:00
|
|
|
// $1 = seconary screen width in pixels, $2 = screen height, $3 =
|
2002-05-24 17:54:28 +00:00
|
|
|
// size of warp zone. $4 and $5 are the x,y position of the mouse
|
|
|
|
// on the secondary screen.
|
|
|
|
//
|
|
|
|
// the secondary screen must send this message in response to the
|
|
|
|
// kMsgQInfo message. it must also send this message when the
|
|
|
|
// screen's resolution changes. in this case, the secondary screen
|
|
|
|
// should ignore any kMsgDMouseMove messages until it receives a
|
|
|
|
// kMsgCInfoAck in order to prevent attempts to move the mouse off
|
|
|
|
// the new screen area.
|
|
|
|
static const char kMsgDInfo[] = "DINF%2i%2i%2i%2i%2i";
|
2002-04-27 14:19:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// query codes
|
|
|
|
//
|
|
|
|
|
|
|
|
// query screen info: primary -> secondary
|
|
|
|
// client should reply with a kMsgDInfo.
|
|
|
|
static const char kMsgQInfo[] = "QINF";
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// error codes
|
|
|
|
//
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
// incompatible versions: primary -> secondary
|
|
|
|
// $1 = major version of primary, $2 = minor version of primary.
|
|
|
|
static const char kMsgEIncompatible[] = "EICV%2i%2i";
|
|
|
|
|
|
|
|
// name provided when connecting is already in use: primary -> secondary
|
|
|
|
static const char kMsgEBusy[] = "EBSY";
|
|
|
|
|
2002-05-31 18:18:29 +00:00
|
|
|
// unknown client: primary -> secondary
|
|
|
|
// name provided when connecting is not in primary's screen
|
|
|
|
// configuration map.
|
|
|
|
static const char kMsgEUnknown[] = "EUNK";
|
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
// protocol violation: primary -> secondary
|
|
|
|
// primary should disconnect after sending this message.
|
|
|
|
static const char kMsgEBad[] = "EBAD";
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|