home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMOS PD CD
/
amospdcd.iso
/
451-475
/
apd472
/
meter.amos
/
meter.amosSourceCode
< prev
next >
Wrap
AMOS Source Code
|
1993-03-13
|
720b
|
49 lines
' < to decrease volume
' > to increase volume
'
Double Buffer
Flash Off : Curs Off : Hide : Cls 0
Get Sprite Palette
Degree
'
Global X,Y,X1,Y1,X2,Y2,ANGLE,LONG,V,T$
X=120 : Y=80 : X1=X+47 : Y1=Y+49 : X2=X1 : Y2=Y+10 : ANGLE=90 : LONG=39 : V=0
'
Music 1
Proc VOL
'
Do
'
T$=Inkey$
If T$<>"" Then Proc VOL
Clear Key
T$=""
Wait Vbl
'
Loop
'
Procedure RDR
'
Ink 0 : Draw X1,Y1 To X2,Y2
Proc CALC
Ink 2 : Draw X1,Y1 To X2,Y2
Bob 1,X,Y,1
'
End Proc
'
Procedure VOL
'
If T$="," and V>0 Then Dec V
If T$="." and V<31 Then Inc V
Mvolume V*2
Proc RDR
'
End Proc
'
Procedure CALC
'
ANGLE=(V*4)+27
Y2=Y1-Sin(ANGLE)*LONG
X2=X1-Cos(ANGLE)*LONG
'
End Proc