Difference between revisions of "Script Classes for Adventure Games/EventHandler Class"
Line 30: | Line 30: | ||
[[Script Classes for Adventure Games/Code Class|26]] | | [[Script Classes for Adventure Games/Code Class|26]] | | ||
[[Script Classes for Adventure Games/Global Variables|27]] | | [[Script Classes for Adventure Games/Global Variables|27]] | | ||
+ | [[Script Classes for Adventure Games/Index|Index]] | ||
</div><br /> | </div><br /> | ||
Latest revision as of 03:12, 9 December 2015
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
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
< Previous: The Set Class Next: The Inventory Class >