Script Classes for Adventure Games/RootObj Class: Difference between revisions
No edit summary |
m (1 revision imported) |
(No difference)
|
Latest revision as of 00:14, 3 June 2024
Official SCI Documentation
Table of Contents
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 RootObj Class
A RootObj is the most fundamental object possible in the Script language — it has an identity as an object, but that's it. It is defined in the kernel, not in Script, and is the ultimate superclass of all objects. Since it is such a minimal object, it is only used as a basis for those objects in which memory size is a major consideration and which are hidden away in other objects in such a way that the fuller identity given by making them sub-classes of Object is not necessary.
In file: | in the kernel |
Inherits from: | nothing |
Inherited by: | Object |
InvItem |
Properties:
speciesThis is a pointer to the property dictionary for an object, which is contained in the defining class. Thus if two objects have equal species properties, they are both instances of the same class. Do not change this property, or the object will stop working.
superClassThis is a pointer to the method dictionary of the object's superclass, and is used to look up a method which is not defined locally. Don't change it, or the object will stop working.
-info-This is esoteric bit-mapped information about the object. It is currently used to tell whether the object is a static instance or was created with new:.
References
See Also:
< Previous: Introduction Next: The Object Class >