home *** CD-ROM | disk | FTP | other *** search
- ` ------------------------------------------------------------------------
- ` Scaling Display DarkForge Snippet (20/8/2000)
- ` ------------------------------------------------------------------------
- ` Zooms/scales a bitmap onto the screen then zooms it off again!
-
- sync rate 0
- sync on
- hide mouse
-
- load bitmap "anhk_inside.bmp",1
- create bitmap 2,640,480
-
- set current bitmap 0
-
- x=4
- y=4
-
- repeat
-
- copy bitmap 1,0,0,x,y,2,0,0,639,479
- copy bitmap 2,0
-
- if x<=635 then inc x,4
- if y<=475 then inc y,4
-
- sync
-
- until x=636
-
- wait key
-
- repeat
-
- copy bitmap 1,0,0,x,y,2,0,0,639,479
- copy bitmap 2,0
-
- if x>=4 then dec x,4
- if y>=4 then dec y,4
-
- sync
-
- until y<=1
-
-