1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/* NCD Audio format - original code by Dave Lemke <lemke@verbosa.ncd.com> */
/* Modified by paul kendall for X Galaga. */
/*
* Include file dependencies:
*/
#ifdef RSOUND
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stddef.h>
#include <ctype.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include "rplay.h"
#include <X11/Xlib.h>
#include "koules.h"
char *unixSoundPath = SOUNDDIR;
#define playSounds 1
/*
* Internal variable declarations:
*/
static char *FILENAME[] =
{
"/start.au",
"/end.au",
"/colize.au",
"/destroy1.au",
"/destroy2.au",
"/creator1.au",
"/creator2.au"
};
#define NUM_SOUNDS (sizeof(FILENAME)/sizeof(char*))
#define MAX_SOUNDS 8
static int fd;
static int audio_on = False;
void
init_sound ()
{
char *displayname = DisplayString (dp);
char host[256], *p, s[256];
int i;
if (audio_on)
return;
strcpy (host, displayname);
if ((p = strrchr (host, (int) ':')) != NULL)
*p = 0;
if (!*host)
strcat (host, "localhost");
printf ("Directing sound to: %s\n", host);
if ((fd = rplay_open (host)) < 0)
{
rplay_perror (host);
return;
}
audio_on = True;
for (i = 0; i < NUM_SOUNDS; i++)
{
s[0] = 0;
strcat (s, SOUNDDIR);
if (s[(int) strlen (s) - 1] == '/')
FILENAME[i]++;
strcat (s, FILENAME[i]);
FILENAME[i] = malloc ((int) strlen (s) + 1);
strcpy (FILENAME[i], s);
}
return;
}
static void *p[7];
void
playSoundFile (char *filename, int volume, void **private)
{
RPLAY **p = (RPLAY **) private;
if (!*p)
{
printf ("loading sound %s\n", filename);
*p = rplay_create (RPLAY_PLAY);
rplay_set (*p, RPLAY_INSERT, 0, RPLAY_SOUND, strdup (filename), NULL);
}
rplay_set (*p, RPLAY_CHANGE, 0, RPLAY_VOLUME, volume, NULL);
rplay (fd, *p);
}
int
play_sound (k)
int k;
{
char c;
c = k;
if (audio_on)
{
playSoundFile (FILENAME[k], 50, &p[k]);
}
return (0);
}
void
maybe_play_sound (k)
int k;
{
}
void
sound_completed (k)
int k;
{
}
void
kill_sound ()
{
}
#endif
|