Script Classes for Adventure Games/Cycling Classes: Difference between revisions

From Sierra Wiki
Jump to navigationJump to search
Andrew Branscom (talk | contribs)
No edit summary
Andrew Branscom (talk | contribs)
 
(12 intermediate revisions by the same user not shown)
Line 137: Line 137:
|            ||BegLoop
|            ||BegLoop
|}
|}
</blockquote>


==<br /> Properties ==
====<br /> Properties ====


<blockquote>
<blockquote>
Line 169: Line 168:
|Inherited by:||none
|Inherited by:||none
|}
|}
</blockquote>
</blockquote>
</blockquote>


Line 206: Line 206:
[[Category:SCI Classes]]
[[Category:SCI Classes]]
[[Category:SCI Cycling Class]]
[[Category:SCI Cycling Class]]
[[Category:SCI Cycling caller]]
[[Category:SCI Cycling Class Caller Property]]
[[Category:SCI Cycling client]]
[[Category:SCI Cycling Class Client Property]]
[[Category:SCI Cycling cycleDir]]
[[Category:SCI Cycling Class CycleDir Property]]
[[Category:SCI Cycling cycleCnt]]
[[Category:SCI Cycling Class CycleCnt Property]]
[[Category:SCI Cycling init]]
[[Category:SCI Cycling Class Init Method]]
[[Category:SCI Cycling doit]]
[[Category:SCI Cycling Class Doit Method]]
[[Category:SCI Cycling nextCel]]
[[Category:SCI Cycling Class NextCel Method]]
[[Category:SCI Cycling cycleDone]]
[[Category:SCI Cycling Class CycleDone Method]]
[[Category:SCI Cycling Forward]]
[[Category:SCI Cycling Class Forward Method]]
[[Category:SCI Cycling Walk]]
[[Category:SCI Cycling Class Walk Method]]
[[Category:SCI Cycling Reverse]]
[[Category:SCI Cycling Class Reverse Method]]
[[Category:SCI Cycling CycleTo]]
[[Category:SCI Cycling Class CycleTo Method]]
[[Category:SCI Cycling endCel]]
[[Category:SCI Cycling Class EndCel Property]]
[[Category:SCI Cycling EndLoop]]
[[Category:SCI Cycling Class EndLoop Property]]
[[Category:SCI Cycling BegLoop]]
[[Category:SCI Cycling Class BegLoop Property]]

Latest revision as of 21:11, 14 January 2026

Official SCI Documentation
Table of Contents

Chapter: for Adventure Games/Introduction|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 Cycling Classes
Author: Jeff Stephenson
1988-04-05



The Cycling Classes

The Cycle class is the basic class which implements cycling behavior in Actor and its sub-classes. Sub-classes of Cycle implement specific cycling behavior.


Cycle

In file: motion.sc
Inherits from: Code
Inherited by: Forward
Reverse
CycleTo


Properties


caller

The object to be cue:ed when the Cycle completes.


client

The Prop, Actor, etc. which is being cycled by an instance of Cycle.


cycleDir

The direction in which the client's cels are to be cycled.

1 forward (cel numbers should increase)
-1 backward (cel numbers should decrease)


cycleCnt

The number of animation cycles since the current cel of the client was displayed. When this equals the cycleSpeed of the client, the nextCel: method is invoked.


Methods


init:

Do any necessary initialization of the Cycle class and ensure that the client is updating.


doit:

Called by the client as doit: self, this method sets the cel of the client to the appropriate value based on the particular Cycle class.


nextCel:

Used by the doit: method to move the cel number in the direction indicated by cycleDir.


cycleDone:

This is invoked when the client's cel reaches a destination cel. If the Cycle class is one of the cyclic ones, this just wraps the cel to either the beginning or end of the current loop. If it is a terminating Cycle class, this cue:s the caller.


Forward

Cycles an Actor through its cels in the 'normal' order — from 0 through the end of the loop and back to 0. Set with (actor setCycle:Forward).

In file: motion.sc
Inherits from: Cycle
Inherited by: Walk


Walk

This is a Forward cycle type which only cycles an Actor when the Actor is moving. Set with (actor setCycle:Walk).

In file: motion.sc
Inherits from: Forward
Inherited by: none


Reverse

Cycles an Actor through its cels in the reverse order of that in Forward, i.e. from the highest cel number to 0 and then repeating. Set with (actor setCycle:Reverse).

In file: motion.sc
Inherits from: Cycle
Inherited by: none


CycleTo

This class allows you to cycle to an arbitrary cel and stop. It is set by (actor setCycle:CycleTo toCel direction [caller]).

In file: motion.sc
Inherits from: Cycle
Inherited by: EndLoop
BegLoop


Properties


endCel

The number of the cel at which the cycling is to complete.


EndLoop

This sub-class of CycleTo advances the cel of an Actor from the current cel to the cel which is the end of the current loop for the Actor, then stops and cue:s its caller (if it has one). Set with (actor setCycle:EndLoop [caller]).

In file: motion.sc
Inherits from: CycleTo
Inherited by: none


BegLoop

This sub-class of CycleTo decrements the cel number from its current value to 0, then stops and cue:s its caller, if any. Set with (actor setCycle:BegLoop [caller]).

In file: motion.sc
Inherits from: CycleTo
Inherited by: none


References



Also See

 

Official SCI Documentation
Table of Contents

< Previous: The PicView Class Next: The Motion Classes >