From: Emanuel Berg <incal@dataswamp.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Lisp Live buffer
Date: Thu, 29 Dec 2022 00:20:40 +0100 [thread overview]
Message-ID: <87a637qfnb.fsf@dataswamp.org> (raw)
In-Reply-To: Y6wLhGQo6kn1J0LN@tuxteam.de
And here is a little non-interactive demo ...
Now the live buffer is the next step, the "view" part.
Ideas?
;;; -*- lexical-binding: t -*-
;;
;; this file:
;; https://dataswamp.org/~incal/emacs-blank/mvc/model-ttt.el
(require 'model)
(defun ttt-board (&optional side blank)
(or side (setq side 3))
(or blank (setq blank "_"))
(make-world 2 side blank) )
(let*((side 3)
(blank "_")
(brd (ttt-board side blank))
(players '#1=("x" "o" . #1#) ))
(defun ttt-set (x y)
(interactive "nx: \nny: ")
(let ((pos (list x y)))
(when (string= blank (world-get brd pos))
(world-set brd pos (pop players)) )))
(declare-function ttt-set nil)
(defun ttt-test-game ()
(ttt-set 1 1)
(ttt-set 0 0)
(ttt-set 2 0)
(ttt-set 0 2)
(ttt-set 0 1)
(ttt-set 2 1)
(ttt-set 1 2)
(ttt-set 1 0)
(ttt-set 2 2)
brd)
(declare-function ttt-test-game nil) )
;; (ttt-test-game)
;; ( ("o" "x" "o")
;; ("o" "x" "x")
;; ("x" "o" "x") )
--
underground experts united
https://dataswamp.org/~incal
next prev parent reply other threads:[~2022-12-28 23:20 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-06 15:44 Lisp Live buffer Emanuel Berg
2022-12-07 3:06 ` Jean Louis
2022-12-07 3:54 ` Emanuel Berg
2022-12-23 8:15 ` Jean Louis
2022-12-26 20:26 ` Emanuel Berg
2022-12-27 1:12 ` Emanuel Berg
2022-12-28 0:32 ` Emanuel Berg
2022-12-28 2:04 ` Emanuel Berg
2022-12-28 2:08 ` Emanuel Berg
2022-12-28 9:25 ` tomas
2022-12-28 19:53 ` Emanuel Berg
2022-12-28 23:20 ` Emanuel Berg [this message]
2022-12-08 11:32 ` Madhu
2022-12-23 8:23 ` Jean Louis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87a637qfnb.fsf@dataswamp.org \
--to=incal@dataswamp.org \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.