Pic.DrawSpecialBack | Part of Pic module |
Syntax | Pic.DrawSpecialBack (picID, x, y, mode, transition, duration : int)
| ||||||||||||
Description | Pic.DrawSpecialBack is very similar to
Pic.DrawSpecial. The only
difference is that Pic.DrawSpecialBack returns immediately
after being called and program execution continues while the special
effect continues. This allows you to continue to draw other graphics
while the special effect is continuing. For example, this procedure is necessary if you want to have two pictures being drawn using special effects simultaneously.
| ||||||||||||
Details | If you are wish to have several images displayed at the same time
using special effects, you must use Pic.DrawSpecialBack to
display all the images but the last and then use
Pic.DrawSpecial to display the last image so that Turing will
wait until the special effects are completed before continuing
execution. If you want to draw the several special effects continuously over the same location, do not use Pic.DrawSpecialBack.
Pic.DrawSpecial (pic1, 10, 10, picCopy, picWipeLeftToRight, 500) If you do, Turing will attempt to run each of the calls at the same time, and most of the special effects will not be seen.
| ||||||||||||
Description | Pic.DrawSpecialBack is used to draw a picture on the screen
with a special effect such as a wipe, a slide, or a fade-in. Note that
all the parameters are identical to the parameters of
Pic.DrawSpecial.
The picture is drawn with the lower left corner at
(x, y). The duration specifies how long the
transition should take in milliseconds. For example, a fade-in could
be specified to last 1/2 a second by using a duration of 500. The mode parameter is the same as in Pic.New and has one of the following values:
See Pic.DrawSpecial for the list of possible values for the transition parameter.
| ||||||||||||
Details | The Pic.DrawSpecialBack requires a moderately fast machine to
operate successfully (Pentium III or higher). The picFadeIn
and picBlend transitions do not work well on 8-bit (256 color)
displays. On Microsoft Windows machines, you can determine the
bit-depth of the display (the number of colors available) by
selecting the Display control panel from the Start
menu. You can also use the Config.Display (cdNumMaxColors) function to determine the bit-depth of the display (anything over 256 colors will produce acceptable results).
| ||||||||||||
Details | If the Pic.DrawSpecialBack call fails, Error.Last will return a
non-zero value indicating the reason for the failure.
Error.LastMsg will return a string which contains the textual
version of the error.
| ||||||||||||
Example | The program draws a blue star on the screen, then a red circle, then
proceeds to have to have the two replace each simultaneously,
side-by-side.
var redID, blueID: int Draw.FillStar (0, 0, 100, 100, brightred) redID := Pic.New (0, 0, 100, 100) cls Draw.FillOval (50, 50, 50, 50, brightblue) blueID := Pic.New (0, 0, 100, 100) cls Pic.DrawSpecialBack (redID, 10, 10, picCopy, picWipeLeftToRightNoBar, 1000) Pic.DrawSpecial (blueID, 160, 10, picCopy, picWipeRightToLeftNoBar, 1000) Pic.DrawSpecialBack (blueID, 10, 10, picCopy, picSlideLeftToRightNoBar, 1000) Pic.DrawSpecial (redID, 160, 10, picCopy, picSlideRightToLeftNoBar, 1000) Pic.DrawSpecialBack (redID, 10, 10, picCopy, picGrowRightToLeftNoBar, 1000) Pic.DrawSpecial (blueID, 160, 10, picCopy, picGrowLeftToRightNoBar, 1000) Pic.DrawSpecialBack (blueID, 10, 10, picCopy, picWipeTopToBottomNoBar, 1000) Pic.DrawSpecial (redID, 160, 10, picCopy, picWipeTopToBottomNoBar, 1000) Pic.DrawSpecialBack (redID, 10, 10, picCopy, picFadeIn, 1000) Pic.DrawSpecial (blueID, 160, 10, picCopy, picFadeIn, 1000) Pic.Free (redID) Pic.Free (blueID)
| ||||||||||||
Execute | |||||||||||||
Status | Exported qualified. This means that you can only call the function by calling Pic.DrawSpecialBack, not by calling DrawSpecialBack.
| ||||||||||||
See also | Pic.Draw for information on the meaning
of the mode argument. Pic.DrawSpecial for information on how to draw special effects and wait for completion of the effect.
|