]> code.delx.au - gnu-emacs-elpa/blobdiff - chess-transport.el
Try to improve the promotion situation on ICS by allowing chess-ply to query for...
[gnu-emacs-elpa] / chess-transport.el
index 8049e7c46590f9214b4d186abe0b82cfae6dd69b..12dce9a470e41ab06dfee42bf77a2147ea749fa7 100644 (file)
@@ -5,26 +5,38 @@
 ;; receive.  This could be used for transmitting chess.el protocol
 ;; over CTCP, for example.
 ;;
-;; NOTE: Make sure that any housekeeping data you use is kept in
-;; buffer-local variables.  Otherwise, multiple games played using the
-;; same kind of transport might collide.
-;;
-;; $Revision$
 
 (require 'chess-network)
 
-(defalias 'chess-network-regexp-alist 'chess-transport-regexp-alist)
+(defvar chess-transport-regexp-alist chess-network-regexp-alist)
 
-(defun chess-transport-handler (event &rest args)
+(defun chess-transport-handler (game event &rest args)
   "This is an example of a generic transport engine."
-  (cond
-   ((eq event 'send)
-    ;; transmit the string given in (car args) to your outbound
-    ;; transport from here
-    )))
-
-;; call (chess-engine-submit engine STRING) for text that arrives from
-;; your inbound transport
+  (unless chess-engine-handling-event
+    (cond
+     ((eq event 'initialize)
+      ;; Initialize the transport here, if necessary.  Make sure that
+      ;; any housekeeping data you use is kept in buffer-local
+      ;; variables.  Otherwise, multiple games played using the same
+      ;; kind of transport might collide.  For example:
+      ;;
+      ;; (set (make-local-variable 'chess-transport-data) (car args))
+      ;;
+      ;; NOTE: Be sure not to return a process, or else chess-engine
+      ;; will do all the transport work!
+      t)
+
+     ((eq event 'send)
+      ;; Transmit the string given in `(car args)' to the outbound
+      ;; transport from here
+      )
+
+     (t
+      ;; Pass all other events down to chess-network
+      (apply 'chess-network-handler game event args)))))
+
+;; Call `(chess-engine-submit engine STRING)' for text that arrives
+;; from the inbound transport
 
 (provide 'chess-transport)