Gamestudio Links
Zorro Links
Newest Posts
ZorroGPT
by TipmyPip. 02/27/26 16:40
WFO Training with parallel cores Zorro64
by Martin_HH. 02/26/26 16:03
Zorro version 3.0 prerelease!
by TipmyPip. 02/25/26 16:38
Camera always moves upwards?
by clonman. 02/21/26 09:29
Sam Foster Sound | Experienced Game Composer for Hire
by titanicpiano14. 02/19/26 13:22
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
2 registered members (TipmyPip, Martin_HH), 4,704 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
the1, alx, ApprenticeInMuc, PatrickH90, USER0328
19200 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
footsteps - sound plays too much! #186531
03/01/08 01:54
03/01/08 01:54
Joined: Jan 2008
Posts: 10
Brisbane, Australia
J
JJJohan Offline OP
Newbie
JJJohan  Offline OP
Newbie
J

Joined: Jan 2008
Posts: 10
Brisbane, Australia
I couldn't really find a way to describe this in the the title so here goes.

I've been working on my little game this morning, added a nice zoom effect, a crouch feature and am now trying to add walking sounds. It doesn't work very well.

The problem is that the sound isn't stopped from playing more than one at a time resulting in a horrible screeching of hundreds of sound copies at a time.

Code:

sound run_wav = <run.wav>;
sound startrun_wav = <suddenwalk.wav>;

function run()
{
var startedrunning;
var running;
if (snd_playing(startedrunning) == 0)
{
startedrunning = ent_playsound (player, startrun_wav, 50); // play the bullet sound at a volume of 100
}
while (key_w > 0)
{
if (snd_playing(running) == 0)
{
running = ent_playsound (player, run_wav, 100);
}
sleep(0.01);
wait (1);
}
snd_stop (running);
snd_stop (startedrunning);
}




The first sound startedrunning is the sound of the player's equipment rattling. The second one, running, is the running loop. I was originally playing with loops but due to the sound bug I decided to make it a sound for now.

It might just be me not being awake yet, but I can't seem to solve it, even when using variables such as:

Code:

var soundisplaying;
if (soundisplaying == 0)
{
---play the sound---
soundisplaying = 1;
}



Bah.

Re: footsteps - sound plays too much! [Re: JJJohan] #186532
03/01/08 06:57
03/01/08 06:57
Joined: Apr 2006
Posts: 624
DEEP 13
badapple Offline
User
badapple  Offline
User

Joined: Apr 2006
Posts: 624
DEEP 13


var_nsave run_handle;


if(snd_playing(run_handle)!=1)
{
run_handle=snd_play(run_wav,100,null);
}


use snd_stop(run_handle); to stop if playing when you dont want it too




Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1