home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft - ECTS 99 (UK) (Disc 1) (Press Kit) / Ubisoft - ECTS 99 (UK) (Disc 1) (Press Kit).bin / Credits.dcr / 00007_Zoom In-Out.ls < prev    next >
Encoding:
Text File  |  1999-08-15  |  6.4 KB  |  203 lines

  1. property pSprite, pSpriteRect, pStart, pActive, pStartRect, pDestRect, pDiffRect, pCompleteCycles, pText, pZoomed, pAuto, pTargetH, pTargetV, pCycles, pPeriodBase, pPeriod
  2.  
  3. on getBehaviorDescription
  4.   vDesc = "ZOOM IN/OUT" & RETURN & RETURN
  5.   vDesc = vDesc & "Gives the appearance of a sprite"
  6.   vDesc = vDesc && "zooming in (getting larger) or zooming out (smaller)."
  7.   vDesc = vDesc && "Can be used with text, bitmap, animated GIF, vector"
  8.   vDesc = vDesc && "shapes, QuickTime 3, and Shockwave Flash sprites." & RETURN & RETURN
  9.   vDesc = vDesc & "Place the sprite in its desired 'zoomed-in' position,"
  10.   vDesc = vDesc && "then add the behavior to the sprite. Choose whether"
  11.   vDesc = vDesc && "the sprite should first appear as zooming in or out,"
  12.   vDesc = vDesc && "when the zooming should start, the coordinates for"
  13.   vDesc = vDesc && "the 'zoomed-out' sprite, the number of times it should"
  14.   vDesc = vDesc && "zoom, and how fast it should zoom. The default"
  15.   vDesc = vDesc && "'zoomed-out' position is the center of the sprite." & RETURN & RETURN
  16.   vDesc = vDesc & "The zoom can be activated automatically in the first frame,"
  17.   vDesc = vDesc && "by a click on the sprite, or by sending the sprite a"
  18.   vDesc = vDesc && "mZoomActivate message. Set the number of cycles to -1"
  19.   vDesc = vDesc && "if you want an endless loop, or 0 if the zoom should"
  20.   vDesc = vDesc && "happen only once.  See the Notes for Developers"
  21.   vDesc = vDesc && "section of the script for information on this method." & RETURN & RETURN
  22.   vDesc = vDesc & "PARAMETERS:" & RETURN
  23.   vDesc = vDesc & " - Is sprite zoomed in or out at beginning" & RETURN
  24.   vDesc = vDesc & " - Zoom activation (automatic, click, message" & RETURN
  25.   vDesc = vDesc & " - Horizontal zoom out coordinate" & RETURN
  26.   vDesc = vDesc & " - Vertical zoom out coordinate" & RETURN
  27.   vDesc = vDesc & " - Zoom cycles" & RETURN
  28.   vDesc = vDesc & " - Zoom speed (seconds)" & RETURN & RETURN
  29.   vDesc = vDesc & "PERMITTED TYPES:" & RETURN
  30.   vDesc = vDesc & "#text, #bitmap, #animgif, #vectorShape, #flash, #QuickTimeMedia" & RETURN
  31. end
  32.  
  33. on getBehaviorTooltip
  34.   vTip = "Zooms sprites in and out.  Use with" & RETURN
  35.   vTip = vTip & "graphic and text sprites."
  36.   return vTip
  37. end
  38.  
  39. on beginSprite me
  40.   mInitialize(me)
  41. end
  42.  
  43. on prepareFrame me
  44.   mUpdate(me)
  45. end
  46.  
  47. on mouseUp me
  48.   if pAuto = #click then
  49.     mActivate(me)
  50.   end if
  51. end
  52.  
  53. on mInitialize me
  54.   pSprite = sprite(me.spriteNum)
  55.   pSpriteRect = pSprite.rect
  56.   pActive = 0
  57.   pCompleteCycles = 0.5
  58.   pPeriod = pPeriodBase * 1000
  59.   pText = pSprite.member.type = #text
  60.   vTarget = point(pTargetH, pTargetV)
  61.   if pZoomed = #in then
  62.     vTargetRect = rect(vTarget, vTarget + point(1, 1))
  63.     if pText then
  64.       pSprite.quad = mRecttoQuad(vTargetRect)
  65.     else
  66.       pSprite.rect = vTargetRect
  67.     end if
  68.   end if
  69.   if pAuto = #automatic then
  70.     mActivate(me)
  71.   end if
  72. end
  73.  
  74. on mUpdate me
  75.   if pActive then
  76.     vMillis = the milliSeconds
  77.     vElapsed = vMillis - pStart
  78.     if vElapsed >= pPeriod then
  79.       pActive = 0
  80.       if pText then
  81.         pSprite.quad = mRecttoQuad(pDestRect)
  82.       else
  83.         pSprite.rect = pDestRect
  84.       end if
  85.       mCheckCycle(me)
  86.     else
  87.       vRect = pStartRect + (pDiffRect * vElapsed / pPeriod)
  88.       if pText then
  89.         pSprite.quad = mRecttoQuad(vRect)
  90.       else
  91.         pSprite.rect = vRect
  92.       end if
  93.     end if
  94.   end if
  95. end
  96.  
  97. on mActivate me
  98.   case pZoomed of
  99.     #in:
  100.       mZoomIn(me)
  101.     #out:
  102.       mZoomOut(me, point(pTargetH, pTargetV))
  103.   end case
  104. end
  105.  
  106. on mCheckCycle me
  107.   vContinue = 0
  108.   case pCycles of
  109.     (-1):
  110.       vContinue = 1
  111.     0:
  112.       vContinue = 0
  113.     otherwise:
  114.       pCompleteCycles = pCompleteCycles + 0.5
  115.       if integer(pCompleteCycles) <= pCycles then
  116.         vContinue = 1
  117.       end if
  118.   end case
  119.   if vContinue then
  120.     if pDestRect = pSpriteRect then
  121.       mZoomOut(me, point(pTargetH, pTargetV))
  122.     else
  123.       mZoomIn(me)
  124.     end if
  125.   end if
  126. end
  127.  
  128. on mRecttoQuad vRect
  129.   return [point(vRect.left, vRect.top), point(vRect.right, vRect.top), point(vRect.right, vRect.bottom), point(vRect.left, vRect.bottom)]
  130. end
  131.  
  132. on mZoomIn me
  133.   mZoom(me, pSpriteRect)
  134. end
  135.  
  136. on mZoomOut me, vTarget
  137.   mZoom(me, rect(vTarget, vTarget + point(1, 1)))
  138. end
  139.  
  140. on mZoom me, vDestRect
  141.   pActive = 1
  142.   pStartRect = pSprite.rect
  143.   pDestRect = vDestRect
  144.   pDiffRect = pDestRect - pStartRect
  145.   pStart = the milliSeconds
  146. end
  147.  
  148. on mCenter vRect
  149.   return point(vRect.left + (vRect.width / 2), vRect.top + (vRect.height / 2))
  150. end
  151.  
  152. on mErrorAlert me, vError, vData
  153.   vBehaviorname = string(me)
  154.   delete word 1 of vBehaviorname
  155.   delete char -30001 of vBehaviorname
  156.   delete char -30001 of vBehaviorname
  157.   case vData.ilk of
  158.     #void:
  159.       vData = "<void>"
  160.     #symbol:
  161.       vData = "#" & vData
  162.   end case
  163.   case vError of
  164.     #getPDLError:
  165.       beep()
  166.       return [#getPDLError: [#comment: "CANCEL: Sprite MUST be one of the following member types:" & RETURN & vData, #format: #symbol, #range: [#Cancel], #default: #Cancel]]
  167.     #runTimeError:
  168.       alert("CANCEL: Sprite MUST be one of the following member types:" & RETURN & mPermittedMemberTypes())
  169.   end case
  170. end
  171.  
  172. on mZoomActivate me
  173.   if pAuto = #message then
  174.     mActivate(me)
  175.   end if
  176. end
  177.  
  178. on getPropertyDescriptionList me
  179.   vRect = sprite(the currentSpriteNum).rect
  180.   vCenter = mCenter(vRect)
  181.   if not (the currentSpriteNum) then
  182.     exit
  183.   end if
  184.   vMember = sprite(the currentSpriteNum).member
  185.   vMemberType = vMember.type
  186.   vPermitted = mPermittedMemberTypes()
  187.   if not vPermitted.getPos(vMemberType) then
  188.     return mErrorAlert(me, #getPDLError, vPermitted)
  189.   end if
  190.   vPDList = [:]
  191.   setaProp(vPDList, #pZoomed, [#comment: "Zoom in or out?", #format: #symbol, #default: #in, #range: [#in, #out]])
  192.   setaProp(vPDList, #pAuto, [#comment: "Start automatically, when clicked," && "or by message?", #default: #automatic, #format: #symbol, #range: [#automatic, #click, #message]])
  193.   setaProp(vPDList, #pTargetH, [#comment: "Horizontal zoom coordinate", #format: #integer, #default: vCenter.locH])
  194.   setaProp(vPDList, #pTargetV, [#comment: "Vertical zoom coordinate", #format: #integer, #default: vCenter.locV])
  195.   setaProp(vPDList, #pCycles, [#comment: "Zoom cycles (0 = one" && "zoom only, -1 = repeat forever)", #format: #integer, #default: 0, #range: [#min: -1, #max: 10]])
  196.   setaProp(vPDList, #pPeriodBase, [#comment: "Time period for zoom (seconds)", #format: #float, #default: 2.0, #range: [#min: 0.25, #max: 15.0]])
  197.   return vPDList
  198. end
  199.  
  200. on mPermittedMemberTypes me
  201.   return [#text, #bitmap, #animgif, #vectorShape, #quickTimeMedia, #flash]
  202. end
  203.