<br><br><div><span class="gmail_quote">On 6/12/06, <b class="gmail_sendername">Lars Rune Nøstdal</b> <<a href="mailto:larsnostdal@gmail.com">larsnostdal@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
ok, after some mailing with Kenny - this works:<br><br><br>(defpackage CellsChat<br>  (:use :cl :cells))<br>(in-package :CellsChat)<br><br><br>(defparameter *newline* (princ-to-string #\Newline))<br><br><br><br>(defmodel Participant ()
<br>  ((chat :cell nil :accessor chat-of :initarg :chat<br>         :initform (error "Participants need something for its `chat'-slot."))<br><br>   (username :cell nil :accessor username-of :initarg :username<br>
             :initform (error "CellsChat needs a `username'."))<br><br>   (speech :cell :ephemeral :accessor speech-of :initarg :speech<br>           :initform (c-in nil))))<br><br><br><br>(defmethod initialize-instance :after ((participant Participant) &key)
<br>  (push participant (participants-of (chat-of participant))))<br><br><br><br>(defobserver speech ((participant Participant))<br>  ;; `new-value' always refers to the slot `speech'<br>  ;; since that is what we're observing
<br>  (when new-value<br>    (dolist (participant (participants-of (chat-of participant)))<br>      (format t "Update interface for '~A', appending: ~A~%"<br>              (username-of participant) new-value))))
<br><br><br><br>(defmethod say ((participant Participant) (what string))<br>  (setf (speech-of participant)<br>        (concatenate 'string (username-of participant) ": " what *newline*)))<br><br><br><br>(defmodel Chat ()
<br>  ((text-box :accessor text-box-of<br>             :initform (c? (concatenate 'string<br>                                        ;; conversation till now..<br>                                        (or .cache "")
<br>                                        ;; well, ok then - this is neat O_o<br>                                        (some 'speech-of<br>(participants-of self)))))<br><br>   (participants  :accessor participants-of<br>
                  :initform (c-in nil))))<br><br><br><br>(defun testChat ()<br>  (let* ((chat (make-instance 'Chat))<br>         (user1 (make-instance 'Participant :username "user1" :chat chat))<br>         (user2 (make-instance 'Participant :username "user2" :chat chat)))
<br>    (say user1 "Hello, anyone here?")<br>    (say user2 "Well hello there - I'm here :)")<br>    (say user1 "Cool .. what's up?")<br>    (say user2 "Just doing some Lisp-hacking -- you?")
<br>    (say user1 "Naaaw .. nothing; I'm kind of tired, so I'm just<br>sitting in the sun here listening to some music")))<br><br><br>..pretty darn cool :)</blockquote><div><br>yes, indeed, except for the bug I tricked Lars into copying. It was a new one on me, to tell you the truth. I am working on a write-up. Almost done, then I will post it here. The bug can be seen by printing out the contents of the text-box (supposedly a full log) at the end of the chat:
<br><br>user1: Hello, anyone here?<br>user2: Well hello there - I'm here :)<br>user2: Just doing some Lisp-hacking -- you?<br><br>In brief, SOME and ephemerals do not play well together. <br><br>New instances get pushed onto participants (the slot), so user appears before user1 in the list. Once user2 gets picked up by SOME, there is no dependency on user1 speech, so only user2 gets recorded. Recall that dependencies reflect only the most recent evaluation (uhhh--I think synapses are an exception, but I have started to wonder why <g>. Anyway....).
<br><br>Deets to follow. Interestingly, I think this is the first case where the Lisp one might naturally write does not Just Work. This bothers me quite a bit -- it may be a Bad Sign. After I post the writeup I will be interested in what others think. 
<br><br>kt<br><br></div></div>