;;; Copyright (c) 1991--2018 ;;; John Carroll, Ann Copestake, Robert Malouf, Stephan Oepen; ;;; see `LICENSE' for conditions. ;;; Modified Jan 1995 to avoid unnecessary duplication in code ;;; Port to MCL requires extensive rewrite ;;; rewritten 1996 for Allegro / CLIM ;;; 1997 - merged with YADU version (in-package :lkb) ;;; the main entry points are a series of functions with names like ;;; display-basic-fs ;;; these functions create a window. They then call ;;; call display-dag1 (and any other ancilliary display functions) ;;; these draw the FS into the window and ;;; have the side effects of making the type names active ;;; Font for the feature structure. Previously, any title and morph rule expressions were ;;; output in the font returned by make-active-fs-title-font-spec: ;;; :fix :roman *fs-title-font-size* ;;; However, this monospace/size variation seems unnecessarily fussy, and does not work well ;;; when we allow the user to specify a different font family for linguistic entities (defun make-active-fs-type-font-spec () (clim:make-text-style :sans-serif :roman (or *fs-type-font-size* 12))) (declaim (notinline make-active-fs-type-font-spec)) ;;; the record of the FS associated with a window (eval-when #+:ansi-eval-when (:load-toplevel :compile-toplevel :execute) #-:ansi-eval-when (load eval compile) (defstruct fs-display-record fs title paths parents type-fs-display id)) ;; ;; Define a frame class for our FS windows ;; (define-lkb-frame active-fs-window ((fs :initform nil :accessor active-fs-window-fs)) :info-bar t :display-function 'draw-active-fs :text-style (make-active-fs-type-font-spec) ;; width and height could in principle be :compute, but then the window almost always ;; fills the screen, which is not user-friendly... :width 500 :height 500 :output-record (make-instance 'clim:standard-tree-output-history)) ;;; ***** active types ***** ;;; moved from outputfs.lsp to make that Lisp-independent ;;; it appears that we need things of a particular type for ;;; presentations, and the easiest way of doing this is with a structure (eval-when (:load-toplevel :compile-toplevel :execute) (defstruct type-thing value type-label-list shrunk-p full-tdfs)) (eval-when (:load-toplevel :compile-toplevel :execute) (clim:define-presentation-type type-thing ())) (defun add-type-and-active-fs-region (stream start-pos type-label-list val shrunk-p atomic-p &optional top-box full-tdfs) ;; YADU - here and below, the slot full-tdfs is needed so that B+C96 ;; style lexical rules can be displayed in the type -> type format ;; with the full fs associated with full-tdfs (declare (ignore start-pos atomic-p top-box)) (let ((type-rec (make-type-thing :value val :type-label-list type-label-list :shrunk-p shrunk-p :full-tdfs full-tdfs))) (with-text-style-bold-face (stream) (clim:with-output-as-presentation (stream type-rec 'type-thing) (write-string (string-downcase val) stream))))) (define-info-bar type-thing (object stream) (let ((path (reverse (type-thing-type-label-list object)))) (dolist (feat path) (write-string (string-downcase (symbol-name feat)) stream) (write-char #\space stream)))) ;;; **** display function entry points **** (defun display-basic-fs (fs title &optional parents paths id) (mp:run-function title #'display-basic-fs-really fs title parents paths id)) (defun display-basic-fs-really (fs title parents paths id) (let ((fs-window (clim:make-application-frame 'active-fs-window))) (setf (active-fs-window-fs fs-window) (make-fs-display-record :fs fs :title title :paths paths :parents parents :type-fs-display *type-fs-display* :id id)) (setf (clim:frame-pretty-name fs-window) title) (clim:run-frame-top-level fs-window))) (defun display-fs (fs title &optional id) (if #+:lui (lui-status-p :avm) #-:lui nil #+:lui (lui-display-fs fs title id) #-:lui nil (display-basic-fs fs title nil nil id))) (defun display-fs-and-parents (fs title parents &optional id) (display-basic-fs fs title parents nil id)) (defun display-fs-and-paths (fs title paths &optional id) (display-basic-fs fs title nil paths id)) ;;; process lock appears to be necessary (at least in Allegro CLIM 2.1.beta) ;;; to avoid the situation where the wrong output goes to a ;;; window when several FSs are drawn one after another ;;; for instance, when displaying a series of results of LR application (defvar *fs-output-lock* (mp:make-process-lock)) (defun draw-active-fs (window stream &key max-width max-height) (declare (ignore max-width max-height)) (mp:with-process-lock (*fs-output-lock*) (let* ((fs-record (active-fs-window-fs window)) (fs (fs-display-record-fs fs-record)) (title (fs-display-record-title fs-record)) (id (fs-display-record-id fs-record)) (parents (fs-display-record-parents fs-record)) (paths (fs-display-record-paths fs-record)) (fudge 20) (max-width 0)) (clim:window-clear stream) ; in case shrink/expand on an FS already there (silica:inhibit-updating-scroll-bars (stream) (clim:with-output-recording-options (stream :draw nil :record t) (draw-active-title stream fs title parents paths) (when (and *show-spelling-rules* (member id *morph-rule-set* :key #'morph-rule-rules :test #'member)) (draw-morph-rule stream id)) (when parents (setf max-width (+ fudge (display-active-parents parents stream)))) (let ((dag-width (or (if (tdfs-p fs) (display-dag2 fs 'edit stream) (display-dag1 fs 'edit stream)) 0))) (setf max-width (max (+ fudge dag-width max-width))) (when paths (setf max-width (max max-width (+ fudge (display-active-dpaths paths stream)))))) (move-to-x-y stream max-width (current-position-y stream)))) (clim:replay (clim:stream-output-history stream) stream) stream))) ;;; display-dag2 and display-lrule should be in output(td)fs.lsp ;;; rather than activefs.lsp ;;; **** displaying parents and paths *** (defun display-active-parents (parents ostream) ;; this function is dedicated to my Mother and Father (format ostream "~%Parents = ") (loop for parent in parents do (if (listp parent) ; glbtypes are followed by a list of real parents (progn (format ostream "[") (loop for real-parent in parent for pt on parent do (display-actual-parent real-parent ostream) (when (cdr pt) (format ostream " "))) (format ostream "] ")) (progn (display-actual-parent parent ostream) (format ostream " ")))) (let ((max-width (current-position-x ostream))) (format ostream "~%") max-width)) (defun display-actual-parent (parent ostream) (let ((val (make-type-thing :value parent))) (with-text-style-bold-face (ostream) (clim:with-output-as-presentation (ostream val 'type-thing) (format ostream "~(~A~)" (type-thing-value val)))))) (defun display-active-dpaths (dpath-list ostream) (let ((max-width 0)) (loop for unif in dpath-list do (output-unif unif ostream t) (setf max-width (max max-width (current-position-x ostream)))) max-width)) (defun draw-active-title (stream fs title parents paths) (declare (ignore fs parents paths)) ;; used to use text-style returned by call to make-active-fs-title-font-spec (clim:with-output-as-presentation (stream t 'symbol) (format stream "~%~A~%" title))) (defun draw-morph-rule (stream id) ;; used to use text-style returned by call to make-active-fs-title-font-spec (format stream "~&~A~&" (pprint-morph-rule id :stream nil))) ;;; Support for interactive unification check (defvar *fs1* nil) (defvar *path1* nil) (defun frame-dag (frame) (let ((fs (fs-display-record-fs (active-fs-window-fs frame)))) (if (tdfs-p fs) (tdfs-indef fs) fs))) (defun select-fs (frame type-thing) (let ((sel (find-object (clim:frame-standard-output frame) #'(lambda (e) (eq e type-thing))))) (setq *fs1* (frame-dag frame)) (setq *path1* (reverse (type-thing-type-label-list type-thing))) (unhighlight-class frame) (highlight-objects (clim:output-record-children sel) frame))) (defun try-unify-fs (frame type-thing) (let* ((fs2 (frame-dag frame)) (path2 (reverse (type-thing-type-label-list type-thing))) (dag (unify-paths-with-fail-messages (create-path-from-feature-list *path1*) *fs1* (create-path-from-feature-list path2) fs2 ;; was copied, but shouldn't be necessary :selected1 *path1* :selected2 path2 t)) (result (when dag (make-tdfs :indef dag)))) (terpri) (when result (display-fs result "Unification result"))) (setq *fs1* nil) (unhighlight-class frame)) ;;; Search for coreferences in a feature structure (eval-when (:load-toplevel :compile-toplevel :execute) (defstruct pointer label valuep type-label-list)) (eval-when (:load-toplevel :compile-toplevel :execute) (clim:define-presentation-type pointer ())) (defun add-active-pointer (stream position pointer type-label-list valuep) (declare (ignore position)) (let ((string (concatenate 'string "<" (write-to-string pointer) ">" (when valuep " = ")))) (clim:with-output-as-presentation (stream (make-pointer :label pointer :valuep valuep :type-label-list type-label-list) 'pointer) (write-string string stream)))) (define-info-bar pointer (object stream) (let ((path (reverse (pointer-type-label-list object)))) (dolist (feat path) (write-string (string-downcase (symbol-name feat)) stream) (write-char #\space stream)))) (define-active-fs-window-command (com-pointer-menu) ((pointer 'pointer :gesture :select)) (clim:with-application-frame (frame) (pop-up-menu (append (unless (pointer-valuep pointer) '(("Find value" :value value))) '(("Find next" :value next))) ;; Find where the value of a pointer is (value (let ((sel (clim:output-record-children (find-object (clim:frame-standard-output frame) #'(lambda (p) (and (pointer-p p) (and (eql (pointer-label pointer) (pointer-label p)) (pointer-valuep p)))))))) (scroll-to (elt sel 0) (clim:frame-standard-output frame)) (setq *fs1* nil) (highlight-objects sel frame))) ;; Find the next use of a pointer after this one (next (let* ((found nil) (rec (find-object (clim:frame-standard-output frame) #'(lambda (p) (if (eq pointer p) (progn (setq found t) nil) (when found (and (pointer-p p) (eql (pointer-label pointer) (pointer-label p)))))))) (sel (when rec (clim:output-record-children rec)))) (when sel (scroll-to (elt sel 0) (clim:frame-standard-output frame)) (setq *fs1* nil) (highlight-objects sel frame))))))) ;;; ***** Pop up menu creation ***** ;;; ;;; There are several sorts of pop up menu which can occur ;;; ;;; 1. pop up menus for types - normally within FSs but also as parents ;;; 2. pop up menu on the top of a FS window - allows output of the ;;; FS as a whole in TeX, storage as a psort etc ;;; 3. pop up menus for psorts displayed in paths ;;; **** pop up menus for types in FSs **** (define-active-fs-window-command (com-type-fs-menu) ((type-thing 'type-thing :gesture :select)) (let* ((type (type-thing-value type-thing)) (type-entry (get-type-entry type)) (type-label-list (type-thing-type-label-list type-thing)) (frame clim:*application-frame*)) (when (and (atom type) type-entry) (pop-up-menu `(("Hierarchy" :value hier :active ,(ltype-constraint type-entry)) ("Help" :value help :active ,(ltype-comment type-entry)) ("Shrink/expand" :value shrink) #+(or :allegro :mcclim) ("Show source" :value source :active ,(source-available-p type)) ("Type definition" :value def :active ,(ltype-constraint type-entry)) ("Expanded type" :value exp :active ,(ltype-constraint type-entry)) ; ("Full structure" :value full ; :active full-tdfs) ("Select" :value select) ("Unify" :value unify :active ,(and *fs1* (highlighted-class frame)))) (hier (display-type-in-tree type)) (help (display-type-comment type (ltype-comment type-entry))) (shrink (shrink-fs-action frame (if (type-thing-shrunk-p type-thing) :expand :shrink) type-label-list)) #+(or :allegro :mcclim) (source (edit-source type)) (def (show-type-spec-aux type type-entry)) (exp (show-type-aux type type-entry)) ; (full (if full-tdfs ; (display-fs full-tdfs (format nil "LR constraint")))) (select (select-fs frame type-thing)) (unify (try-unify-fs frame type-thing)))))) ;;; ***** pop up menu actions for types ****** (defun shrink-fs-action (window action path) (set-dag-display-value (fs-display-record-fs (active-fs-window-fs window)) (reverse path) action (fs-display-record-type-fs-display (active-fs-window-fs window))) (clim:redisplay-frame-panes window :force-p t)) (defun display-type-comment (type comment-string &optional parent-stream) (declare (ignore parent-stream type)) (when comment-string (format t "~%~A~%" comment-string) (force-output))) ;;; **** the title or top pop up menu **** (define-active-fs-window-command (com-title-fs-menu) ((name 'symbol :gesture :select)) (declare (ignore name)) (let ((id (fs-display-record-id (active-fs-window-fs clim:*application-frame*))) (fs (fs-display-record-fs (active-fs-window-fs clim:*application-frame*)))) (pop-up-menu `(("Output TeX..." :value tex) ("Apply lex rule..." :value lexrule :active ,(and id (ignore-errors (active-fs-lexical-id-p id)) *ordered-lrule-list*)) ("Apply all lex rules" :value allrules :active ,(and id (ignore-errors (active-fs-lexical-id-p id)) *ordered-lrule-list*)) #| ("Show spelling change rule" :value spelling-rule :active ,(member id *morph-rule-set* :key #'morph-rule-rules :test #'member)) |# #+(or :allegro :mcclim) ("Show source" :value source :active ,(and id (source-available-p id)))) (tex (output-fs-in-tex fs)) (lexrule (apply-lex id fs)) (allrules (apply-lex-rules id fs)) #| (spelling-rule (pprint-morph-rule id ;; :stream excl::*initial-terminal-io* ;; #+:clim clim-user::*lkb-top-stream* #-:clim t )) |# #+(or :allegro :mcclim) (source (edit-source id))))) (defun active-fs-lexical-id-p (id) (or (get-lex-entry-from-id id) (and (stringp id) (search " + " id)))) ; result of a lexical rule application ;;; **** pop up menus for psorts (called when paths are displayed) ***** ;;; display-fs-spec etc are in lexinput.lsp (eval-when (:load-toplevel :compile-toplevel :execute) (defstruct psort-thing value)) (eval-when (:load-toplevel :compile-toplevel :execute) (clim:define-presentation-type psort-thing ())) (defun display-active-psort (psort ostream) (let ( ; (start-pos (current-position ostream)) (val (make-psort-thing :value psort))) (with-text-style-bold-face (ostream) (clim:with-output-as-presentation (ostream val 'psort-thing) (format ostream "~A " (psort-thing-value val)))))) (define-active-fs-window-command (com-psort-menu) ((psort-thing 'psort-thing :gesture :select)) (let* ((psort (psort-thing-value psort-thing)) (lex-entry (if psort (get-lex-entry-from-id psort)))) (if lex-entry (pop-up-psort-menu-items psort lex-entry) (let ((lex-rule-entry (get-lex-rule-entry psort))) (if lex-rule-entry (pop-up-lex-rule-menu-items psort lex-rule-entry)))))) (defun pop-up-psort-menu-items (psort lex-entry) (pop-up-menu '(("Entry definition" :value def) ("Expanded entry" :value exp)) (def (display-unexpanded-lex-entry psort lex-entry)) (exp (display-fs (lex-entry-full-fs lex-entry) (format nil "~(~A~) - expanded" psort) psort)))) (defun pop-up-lex-rule-menu-items (psort rule-entry) (declare (ignore psort)) (pop-up-menu '(("Show rule" :value rule)) (rule (display-fs (rule-full-fs rule-entry) (format nil "~(~A~)" (rule-id rule-entry)) (rule-id rule-entry))))) ;;; ***** TeX macros ****** (defun output-fs-in-tex (fs) (when fs (let ((file-name (ask-user-for-new-pathname "File for LaTeX output?"))) (when file-name (display-dag fs 'tex file-name))))) ;;; ***** Other title menu functions ***** (defun store-as-psort (fs) (let ((psort-name 'no-name)) (when fs (setf psort-name (car (ask-for-lisp-movable "Current Interaction" `(("Lex-id?" . ,psort-name)) nil))) (when psort-name (or (store-temporary-psort-entry psort-name fs) (progn (show-message-window "Entry name already used") (store-as-psort fs))))))) ;;; ******* Dummy functions - only used in Common Graphics version ********** (defun store-fs-record-data (stream rpath flag pointer) (declare (ignore stream rpath flag pointer)) nil) (defun store-fs-record-data-label (stream rpath) (declare (ignore stream rpath)) nil) (defun store-fs-record-data-end (stream rpath) (declare (ignore stream rpath)) nil) (defun store-fs-redisplay (stream rpath box) (declare (ignore stream rpath box)) nil)