@@ -3,15 +3,23 @@ program pitfall;
3
3
const
4
4
sw=320 ;
5
5
sh=240 ;
6
+ fpsec=50 ;
6
7
7
8
8
9
global
9
10
vineid=0 ;
10
-
11
+ sounds[10 ];
12
+ framecount=0 ;
13
+ soundspeed=256 *((fpsec*1000 )/50 )/1000 ;
11
14
12
15
begin
13
16
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 );
15
23
16
24
load_fpg ("pitfall/pitfall.fpg" );
17
25
set_mode (sw*1000 +sh);
32
40
33
41
34
42
loop
35
-
43
+ framecount++;
36
44
frame;
37
45
38
46
end
70
78
draw_z=1024 ;
71
79
//graph=9;
72
80
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);
75
83
76
84
77
85
//x1=320;
@@ -86,7 +94,7 @@ d1=draw(1,136,0,0,x1,y1,x,y);
86
94
//rope();
87
95
loop
88
96
89
- x=x1+sin (timer[ 0 ]* 800 )/15 ;
97
+ x=x1+sin (framecount* 2 * 700 )/15 ;
90
98
y=(-10 -sh-x1)+cos (abs (x1-x)*180 )/2 ;
91
99
move_draw (d,56 ,15 ,x1,y1,x,y);
92
100
move_draw (d1,56 ,15 ,x1+1 ,y1,x+1 ,y);
@@ -177,6 +185,10 @@ swinging=0;
177
185
178
186
begin
179
187
188
+ write_int (0 ,32 ,0 ,0 ,&x);
189
+ write_int (0 ,32 ,16 ,0 ,&y);
190
+
191
+
180
192
graph=10 ;
181
193
182
194
x=60 ;
@@ -205,8 +217,10 @@ loop
205
217
206
218
if (y== 110 )
207
219
208
- if (key (_space ))
220
+ if (key (_space ) && yx!=-5 )
209
221
yx=-5 ;
222
+ playsound (0 );
223
+
210
224
end
211
225
212
226
if (key (_right ))
@@ -245,8 +259,11 @@ loop
245
259
246
260
if (yx< 10 && y<110 || yx==-5)
247
261
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
250
267
else
251
268
d++;
252
269
if (d%3 == 0 )
273
290
274
291
process pit ()
275
292
276
- private
277
- d=0 ;
278
- dd=0 ;
279
293
begin
280
294
281
295
x=(sw/2 )-8 ;
@@ -284,8 +298,7 @@ graph=8;
284
298
size=100 ;
285
299
loop
286
300
287
- d++;
288
- if (d== 130 )
301
+ if (framecount%130 == 1 )
289
302
if (size== 100 )
290
303
while (size> 0 )
291
304
size-= 5 ;
@@ -297,8 +310,6 @@ if(d==130)
297
310
frame;
298
311
end
299
312
end
300
- //debug;
301
- d=0 ;
302
313
end
303
314
304
315
frame;
@@ -307,3 +318,12 @@ frame;
307
318
end
308
319
309
320
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
0 commit comments