mixer.h
author bjarni
Mon, 07 Nov 2005 23:20:47 +0000
changeset 2617 a9e1a187de99
parent 2436 177cb6a8339f
child 2977 0240dd4704a7
permissions -rw-r--r--
(svn r3155) -Feature: [autoreplace] autoreplace can now remove cars from too long trains
-Trains will now remember the length of stations it visits and sell cars
when being autoreplaced if they became too long
-If it needs to remove cars, then it starts from the front and sells
all it can find until the train is short enough
-This only works for trains, that knows the station length of the route
so a full uninterrupted run is needed
-a train needs 1-2 runs to detect if the shortest station is expanded
-This feature can be turned on and off in the train replace window
and each company can have it's own setting
-NOTE: minor savegame version bump
/* $Id$ */

#ifndef MIXER_H
#define MIXER_H

typedef struct Mixer Mixer;
typedef struct MixerChannel MixerChannel;

enum {
	MX_AUTOFREE = 1,
//	MX_8BIT = 2,
//	MX_STEREO = 4,
//	MX_UNSIGNED = 8,
};

VARDEF Mixer *_mixer;

bool MxInitialize(uint rate);
void MxMixSamples(Mixer *mx, void *buffer, uint samples);

MixerChannel *MxAllocateChannel(Mixer *mx);
void MxSetChannelRawSrc(MixerChannel *mc, int8 *mem, uint size, uint rate, uint flags);
void MxSetChannelVolume(MixerChannel *mc, uint left, uint right);
void MxActivateChannel(MixerChannel*);

#endif /* MIXER_H */