Script Classes for Adventure Games/EventHandler Class

From SCI Wiki
Revision as of 03:12, 9 December 2015 by Andrew Branscom (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Official SCI Documentation

Chapter: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14
15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | Index


The EventHandler Class

Author: Jeff Stephenson

Date: 5 April 1988

 


The EventHandler Class

The EventHandler is a kind of Set that has a handleEvent method. The handleEvent method for this Class invokes the handleEvent method for each of its elements. The return is TRUE if one of the elements claimed the event, otherwise FALSE.

The cast of an adventure game is an EventHandler consisting of Views, Props, Actors, and Ego. The features list is also an EventHandler consisting of Features and (possibly) PicViews. (see class descriptions below).

In file: system.sc
Inherits from: Set
Inherited by: none


Properties

 


Methods


handleEvent. event

Passes on the handleEvent message to each of its member. and returns TRUE if one of its elements claim the event. otherwise FALSE.

 

Notes


 

Table of Contents

 

< Previous: The Set Class Next: The Inventory Class >