Adding viewpoints » History » Version 11

Marcus Pearce, 2013-07-23 01:53 PM

1 1 Marcus Pearce
h1. Adding Viewpoints
2 1 Marcus Pearce
3 1 Marcus Pearce
h2. Basic viewpoints
4 1 Marcus Pearce
5 4 Marcus Pearce
# Add the viewpoint definition to <code>basic-viewpoints.lisp</code> in the directory <code>viewpoints</code>:
6 5 Marcus Pearce
<pre>
7 4 Marcus Pearce
;; Note ornaments (0 = no ornament; 1 = accacciatura; 2 = mordent; 3 =
8 4 Marcus Pearce
;; trill
9 1 Marcus Pearce
(define-basic-viewpoint ornament (events)
10 4 Marcus Pearce
  (md:ornament (last-element events)))
11 5 Marcus Pearce
</pre>
12 4 Marcus Pearce
# Add a column to the mtp-event table in the database
13 11 Marcus Pearce
<pre>(clsql:execute-command "ALTER TABLE mtp_event ADD ornament INT DEFAULT 'NULL';")</pre>
14 4 Marcus Pearce
# In <code>events/events.lisp</code>: 
15 10 Marcus Pearce
add the slot definition <code>(ornament :initarg :ornament :accessor ornament)</code> to the class definition for <code>music-event</code>
16 4 Marcus Pearce
# In <code>events/music-db.lisp</code>: 
17 1 Marcus Pearce
add <code>[ornament]</code> to the obvious places in the variable <code>*event-attributes*</code>.
18 10 Marcus Pearce
# Export the new viewpoint from the <code>music-data</code> package: do this in <code>events/package.lisp</code> adding <code>"ornament"</code> to the list of exported symbols from the package <code>music-data</code>.
19 10 Marcus Pearce
# If you want the basic viewpoint to be instantiated in data imported from :lisp or :mid formats, then add the following line to <code>database/music-data.lisp</code> to the list of slot instantiations in the method <code>insert-event</code>:
20 10 Marcus Pearce
<pre>:ornament       (cadr (assoc :ornament event))</pre>
21 1 Marcus Pearce
22 1 Marcus Pearce
h2. Derived viewpoints
23 1 Marcus Pearce
24 9 Marcus Pearce
The procedure for adding derived viewpoints is to add the viewpoint definition to one of the files in <code>viewpoints/derived-viewpoints/</code> using the macro <code>define-viewpoint</code> which has the following signature:
25 1 Marcus Pearce
26 2 Marcus Pearce
<pre>(define-viewpoint (viewpoint-name viewpoint-type (type-set)) (events element) :function viewpoint-function :function* inverse-function)</pre>
27 1 Marcus Pearce
28 1 Marcus Pearce
* _viewpoint-name_: a symbol naming the viewpoint 
29 1 Marcus Pearce
* _viewpoint-type_: a symbol giving the type of the derived viewpoint (<code>derived</code> for primitive derived; <code>test</code> for test; <code>threaded</code> for threaded)
30 1 Marcus Pearce
* _type-set_: a list of basic viewpoints that this viewpoint is derived from and, therefore, capable of predicting
31 1 Marcus Pearce
* _events_: a symbol denoting the first argument to ''viewpoint-function'' and ''inverse-function''
32 1 Marcus Pearce
* _element_: a symbol denoting the second argument to ''inverse-function''
33 1 Marcus Pearce
* _viewpoint-function_: a function of arity 1, which accepts a list of events, the <code>events</code> symbol above, representing a melody and returns a value from the domain of the viewpoint being defined or the <code>+undefined+</code> symbol
34 1 Marcus Pearce
* _inverse-function_: a function of arity 2, accepting a list of events and an element from the domain of the viewpoint, which returns the element from the domain of the basic viewpoint which would generate the supplied element if applied to the supplied event list with the last element removed (implemented for purposes of efficiency only and not required).
35 1 Marcus Pearce
36 1 Marcus Pearce
h3. Example
37 1 Marcus Pearce
38 1 Marcus Pearce
Define a viewpoint <code>cpint</code> returning the pitch interval in semitones between the final two notes in a melodic sequence given a basic viewpoint <code>cpitch</code> which encodes chromatic pitch in semitones as midi note numbers:
39 1 Marcus Pearce
40 1 Marcus Pearce
<pre>
41 1 Marcus Pearce
(define-viewpoint (cpint derived (cpitch))
42 1 Marcus Pearce
    (events element) 
43 1 Marcus Pearce
  :function (multiple-value-bind (e1 e2)
44 1 Marcus Pearce
                (values-list (last events 2))
45 1 Marcus Pearce
              (if (or (null e1) (null e2)) +undefined+
46 1 Marcus Pearce
                  (let ((cpitch1 (cpitch (list e1)))
47 1 Marcus Pearce
                        (cpitch2 (cpitch (list e2))))
48 1 Marcus Pearce
                    (if (undefined-p cpitch1 cpitch2) +undefined+
49 1 Marcus Pearce
                        (- cpitch2 cpitch1)))))
50 1 Marcus Pearce
  :function* (list (+ element (cpitch (list (penultimate-element events))))))
51 1 Marcus Pearce
</pre>