On this page:
<input>
<input-tests>
<change>
<clack>
<player-moved?>
<circle-at-point>
<point-in-this-circle?-tests>
<point-in-this-circle?-tests>2
<point-in-this-circle?>
<block-cell/world>
<move-cat>
<moved-cat-world>
<find-best-positions>
<lt/f>
<update-world-posn>
1.18.8 Handling Input

Input handling consists of handling two different kinds of events: key events, and mouse events, plus various helper functions.

The change function handles keyboard input. If the input is n and the game is over, then restart the game. If the input is h then turn on the help and otherwise do nothing.

(define (change w ke)
  (cond
    [(key=? ke "n")
     (if (equal? (world-state w) 'playing)
         w
         (make-initial-world))]
    [(key=? ke "h")
     (make-world (world-board w)
                 (world-cat w)
                 (world-state w)
                 (world-size w)
                 (world-mouse-posn w)
                 (not (world-help? w)))]
    [else w]))

The clack function handles mouse input. It has three tasks and each corresponds to a helper function:
  • block the clicked cell (block-cell/world),

  • move the cat (move-cat), and

  • update the black dot as the mouse moves around (update-world-posn).

The helper functions are combined in the body of clack, first checking to see if the mouse event corresponds to a player’s move (via the player-moved? function.

(define/contract (clack world x y evt)
  (-> world? integer? integer? any/c
      world?)
  (define moved-world
    (cond
      [(player-moved? world x y evt)
       =>
       (λ (circle)
         (move-cat
          (block-cell/world circle world)))]
      [else world]))
  (update-world-posn
   moved-world
   (and (eq? (world-state moved-world) 'playing)
        (not (equal? evt "leave"))
        (make-posn x y))))

The player-moved? predicate returns a posn indicating where the player chose to move when the mouse event corresponds to a player move, and returns #f. It first checks to see if the mouse event is a button up event and that the game is not over, and then it just calls circle-at-point.

(define/contract (player-moved? world x y evt)
  (-> world? integer? integer? any/c
      (or/c posn? #f))
  (and (equal? evt "button-up")
       (equal? 'playing (world-state world))
       (circle-at-point (world-board world) x y)))

The circle-at-point function returns a posn when the coordinate (x,y) is inside an unblocked circle on the given board. Instead of computing the nearest circle to the coordinates, it simply iterates over the cells on the board and returns the posn of the matching cell.

(define/contract (circle-at-point board x y)
  (-> (listof cell?) real? real?
      (or/c posn? #f))
  (ormap (λ (cell)
           (and (point-in-this-circle? (cell-p cell) x y)
                (not (cell-blocked? cell))
                (cell-p cell)))
         board))

The point-in-this-circle? function returns #t when the point (x,y) on the screen falls within the circle located at the posn p.

This is precise about checking the circles. For example, a point that is (14,14) away from the center of a circle is still in the circle:

(test (point-in-this-circle?
       (make-posn 1 0)
       (+ (cell-center-x (make-posn 1 0)) 14)
       (+ (cell-center-y (make-posn 1 0)) 14))
      #t)

but one that is (15,15) away is no longer in the circle, since it crosses the boundary away from a circle of radius 20 at that point.

(test (point-in-this-circle?
       (make-posn 1 0)
       (+ (cell-center-x (make-posn 1 0)) 15)
       (+ (cell-center-y (make-posn 1 0)) 15))
      #f)

The implementation of point-in-this-circle? uses complex numbers to represent both points on the screen and directional vectors. In particular, the variable center is a complex number whose real part is the x coordinate of the center of the cell at p, and its imaginary part is y coordinate. Similarly, mp is bound to a complex number corresponding to the position of the mouse, at (x, y). Then, the function computes the vector between the two points by subtracting the complex numbers from each other and extracting the magnitude from that vector.

(define/contract (point-in-this-circle? p x y)
  (-> posn? real? real? boolean?)
  (define center (+ (cell-center-x p)
                    (* (sqrt -1)
                       (cell-center-y p))))
  (define mp (+ x (* (sqrt -1) y)))
  (<= (magnitude (- center mp))
      circle-radius))

In the event that player-moved? returns a posn, the clack function blocks the clicked on cell using block-cell/world, which simply calls block-cell.

(define/contract (block-cell/world to-block w)
  (-> posn? world? world?)
  (make-world (block-cell to-block (world-board w))
              (world-cat w)
              (world-state w)
              (world-size w)
              (world-mouse-posn w)
              (world-help? w)))

The move-cat function uses calls build-bfs-table to find the shortest distance from all of the cells to the boundary, and then uses find-best-positions to compute the list of neighbors of the cat that have the shortest distance to the boundary. If that list is empty, then next-cat-position is #f, and otherwise, it is a random element from that list.

(define/contract (move-cat world)
  (-> world? world?)
  (define cat-position (world-cat world))
  (define table (build-bfs-table world 'boundary))
  (define neighbors (adjacent cat-position))
  (define next-cat-positions
    (find-best-positions neighbors
                         (map (λ (p) (lookup-in-table table p))
                              neighbors)))
  (define next-cat-position
    (cond
      [(boolean? next-cat-positions) #f]
      [else
       (list-ref next-cat-positions
                 (random (length next-cat-positions)))]))
  <moved-cat-world>)

Once next-cat-position has been computed, it is used to update the cat and state fields of the world, recording the cat’s new position and whether or not the cat won.

(make-world (world-board world)
            (cond
              [(boolean? next-cat-position)
               cat-position]
              [else next-cat-position])
            (cond
              [(boolean? next-cat-position)
               'cat-lost]
              [(on-boundary? next-cat-position (world-size world))
               'cat-won]
              [else 'playing])
            (world-size world)
            (world-mouse-posn world)
            (world-help? world))

The find-best-positions function accepts two parallel lists, one of posns, and one of scores for those posns, and it returns either a non-empty list of posns that have tied for the best score, or it returns #f, if the best score is '.

(define/contract (find-best-positions posns scores)
  (-> (cons/c posn? (listof posn?))
      (cons/c (or/c number? ') (listof (or/c number? ')))
      (or/c (cons/c posn? (listof posn?)) #f))
  (define best-score
    (for/fold ([sofar (first scores)])
              ([x (in-list (rest scores))])
      (if (<=/f x sofar)
          x
          sofar)))
  (cond
    [(symbol? best-score) #f]
    [else
     (map
      second
      (filter (λ (x) (equal? (first x) best-score))
              (map list scores posns)))]))

This is a helper function that behaves like <=, but is extended to deal properly with '.

<lt/f> ::=
(define/contract (<=/f a b)
  (-> (or/c number? ')
      (or/c number? ')
      boolean?)
  (cond
    [(equal? b ') #t]
    [(equal? a ') #f]
    [else (<= a b)]))

Finally, to complete the mouse event handling, the update-world-posn function is called from clack. It updates the mouse-down field of the world. If the p argument is a posn, it corresponds to the location of the mouse, in graphical coordinates. So, the function converts it to a cell position on the board and uses that. Otherwise, when p is #f, the mouse-down field is just updated to #f.

(define/contract (update-world-posn w p)
  (-> world? (or/c #f posn?)
      world?)
  (cond
    [(posn? p)
     (define mouse-spot
       (circle-at-point (world-board w)
                        (posn-x p)
                        (posn-y p)))
     (make-world (world-board w)
                 (world-cat w)
                 (world-state w)
                 (world-size w)
                 (cond
                   [(equal? mouse-spot (world-cat w))
                    #f]
                   [else
                    mouse-spot])
                 (world-help? w))]
    [else
     (make-world (world-board w)
                 (world-cat w)
                 (world-state w)
                 (world-size w)
                 #f
                 (world-help? w))]))