newgrf_sound.h
author miham
Wed, 11 Oct 2006 17:25:36 +0000
changeset 4810 18192993d0c5
parent 4656 9c1d8c4d3e60
permissions -rw-r--r--
(svn r6734) WebTranslator2 update to 2006-10-11 19:25:04
catalan - 12 changed by arnaullv (12)
estonian - 13 fixed by vermon (13)
finnish - 179 fixed, 13 changed by kerba (192)
/* $Id$ */

#ifndef NEWGRF_SOUND_H
#define NEWGRF_SOUND_H

typedef enum VehicleSoundEvents {
	VSE_START        = 1,
	VSE_TUNNEL       = 2,
	VSE_BREAKDOWN    = 3,
	VSE_RUNNING      = 4,
	VSE_TOUCHDOWN    = 5,
	VSE_TRAIN_EFFECT = 6,
	VSE_RUNNING_16   = 7,
	VSE_STOPPED_16   = 8,
	VSE_LOAD_UNLOAD  = 9,
} VehicleSoundEvent;


FileEntry *AllocateFileEntry(void);
void InitializeSoundPool(void);
FileEntry *GetSound(uint index);
uint GetNumSounds(void);
bool PlayVehicleSound(const Vehicle *v, VehicleSoundEvent event);

#endif /* NEWGRF_SOUND_H */