Skip to content

Commit d641176

Browse files
committed
added jump and swing sounds
1 parent 3de95cd commit d641176

File tree

4 files changed

+36
-16
lines changed

4 files changed

+36
-16
lines changed

jump.wav

15.7 KB
Binary file not shown.

pitfall.PRG

+36-16
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,23 @@ program pitfall;
33
const
44
sw=320;
55
sh=240;
6+
fpsec=50;
67

78

89
global
910
vineid=0;
10-
11+
sounds[10];
12+
framecount=0;
13+
soundspeed=256*((fpsec*1000)/50)/1000;
1114

1215
begin
1316

14-
set_fps(60,2);
17+
write_int(0,0,64,0,&soundspeed);
18+
19+
20+
sounds[0]=load_wav("pitfall/jump.wav",0); // jump
21+
sounds[1]=load_wav("pitfall/swing.wav",0); // swing
22+
set_fps(fpsec,2);
1523

1624
load_fpg("pitfall/pitfall.fpg");
1725
set_mode(sw*1000+sh);
@@ -32,7 +40,7 @@ pit();
3240

3341

3442
loop
35-
43+
framecount++;
3644
frame;
3745

3846
end
@@ -70,8 +78,8 @@ begin
7078
draw_z=1024;
7179
//graph=9;
7280

73-
//write_int(0,0,0,0,&x);
74-
//write_int(0,0,16,0,&y);
81+
write_int(0,0,0,0,&x);
82+
write_int(0,0,16,0,&y);
7583

7684

7785
//x1=320;
@@ -86,7 +94,7 @@ d1=draw(1,136,0,0,x1,y1,x,y);
8694
//rope();
8795
loop
8896

89-
x=x1+sin(timer[0]*800)/15;
97+
x=x1+sin(framecount*2*700)/15;
9098
y=(-10-sh-x1)+cos(abs(x1-x)*180)/2;
9199
move_draw(d,56,15,x1,y1,x,y);
92100
move_draw(d1,56,15,x1+1,y1,x+1,y);
@@ -177,6 +185,10 @@ swinging=0;
177185

178186
begin
179187

188+
write_int(0,32,0,0,&x);
189+
write_int(0,32,16,0,&y);
190+
191+
180192
graph=10;
181193

182194
x=60;
@@ -205,8 +217,10 @@ loop
205217

206218
if(y==110)
207219

208-
if(key(_space))
220+
if(key(_space) && yx!=-5)
209221
yx=-5;
222+
playsound(0);
223+
210224
end
211225

212226
if(key(_right))
@@ -245,8 +259,11 @@ loop
245259

246260
if(yx<10 && y<110 || yx==-5)
247261
if(yx<0 && y>vineid.y-10 && y<vineid.y+10
248-
&& x>vineid.x-5 && x<vineid.x+5)
249-
swinging=1;
262+
&& x>vineid.x-10 && x<vineid.x+10)
263+
if(swinging==0)
264+
swinging=1;
265+
playsound(1);
266+
end
250267
else
251268
d++;
252269
if(d%3==0)
@@ -273,9 +290,6 @@ end
273290

274291
process pit()
275292

276-
private
277-
d=0;
278-
dd=0;
279293
begin
280294

281295
x=(sw/2)-8;
@@ -284,8 +298,7 @@ graph=8;
284298
size=100;
285299
loop
286300

287-
d++;
288-
if(d==130)
301+
if(framecount%130==1)
289302
if(size==100)
290303
while(size>0)
291304
size-=5;
@@ -297,8 +310,6 @@ if(d==130)
297310
frame;
298311
end
299312
end
300-
//debug;
301-
d=0;
302313
end
303314

304315
frame;
@@ -307,3 +318,12 @@ frame;
307318
end
308319

309320
end
321+
322+
function playsound(num)
323+
324+
begin
325+
326+
x=sound(sounds[num],256,256);
327+
change_sound(x,256,soundspeed);
328+
329+
end

pitfall.fpg

0 Bytes
Binary file not shown.

swing.wav

89 KB
Binary file not shown.

0 commit comments

Comments
 (0)