/usr/share/pyshared/pygame/sndarray.py is in python-pygame 1.9.1release+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | ## pygame - Python Game Library
## Copyright (C) 2008 Marcus von Appen
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Library General Public
## License as published by the Free Software Foundation; either
## version 2 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Library General Public License for more details.
##
## You should have received a copy of the GNU Library General Public
## License along with this library; if not, write to the Free
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
## Marcus von Appen
## mva@sysfault.org
"""pygame module for accessing sound sample data
Functions to convert between Numeric or numpy arrays and Sound
objects. This module will only be available when pygame can use the
external numpy or Numeric package.
Sound data is made of thousands of samples per second, and each sample
is the amplitude of the wave at a particular moment in time. For
example, in 22-kHz format, element number 5 of the array is the
amplitude of the wave after 5/22000 seconds.
Each sample is an 8-bit or 16-bit integer, depending on the data format.
A stereo sound file has two values per sample, while a mono sound file
only has one.
Supported array systems are
numpy
numeric
The default will be numpy, if installed. Otherwise, Numeric will be set
as default if installed. If neither numpy nor Numeric are installed, the
module will raise an ImportError.
The array type to use can be changed at runtime using the use_arraytype()
method, which requires one of the above types as string.
Note: numpy and Numeric are not completely compatible. Certain array
manipulations, which work for one type, might behave differently or even
completely break for the other.
Additionally, in contrast to Numeric numpy can use unsigned 16-bit
integers. Sounds with 16-bit data will be treated as unsigned integers,
if the sound sample type requests this. Numeric instead always uses
signed integers for the representation, which is important to keep in
mind, if you use the module's functions and wonder about the values.
"""
import pygame
# Global array type setting. See use_arraytype().
__arraytype = None
# Try to import the necessary modules.
try:
import pygame._numpysndarray as numpysnd
__hasnumpy = True
__arraytype = "numpy"
except ImportError:
__hasnumpy = False
try:
import pygame._numericsndarray as numericsnd
__hasnumeric = True
if not __hasnumpy:
__arraytype = "numeric"
except ImportError:
__hasnumeric = False
if not __hasnumpy and not __hasnumeric:
raise ImportError("no module named numpy or Numeric found")
def array (sound):
"""pygame.sndarray.array(Sound): return array
Copy Sound samples into an array.
Creates a new array for the sound data and copies the samples. The
array will always be in the format returned from
pygame.mixer.get_init().
"""
if __arraytype == "numeric":
return numericsnd.array (sound)
elif __arraytype == "numpy":
return numpysnd.array (sound)
raise NotImplementedError("sound arrays are not supported")
def samples (sound):
"""pygame.sndarray.samples(Sound): return array
Reference Sound samples into an array.
Creates a new array that directly references the samples in a Sound
object. Modifying the array will change the Sound. The array will
always be in the format returned from pygame.mixer.get_init().
"""
if __arraytype == "numeric":
return numericsnd.samples (sound)
elif __arraytype == "numpy":
return numpysnd.samples (sound)
raise NotImplementedError("sound arrays are not supported")
def make_sound (array):
"""pygame.sndarray.make_sound(array): return Sound
Convert an array into a Sound object.
Create a new playable Sound object from an array. The mixer module
must be initialized and the array format must be similar to the mixer
audio format.
"""
if __arraytype == "numeric":
return numericsnd.make_sound (array)
elif __arraytype == "numpy":
return numpysnd.make_sound (array)
raise NotImplementedError("sound arrays are not supported")
def use_arraytype (arraytype):
"""pygame.sndarray.use_arraytype (arraytype): return None
Sets the array system to be used for sound arrays.
Uses the requested array type for the module functions.
Currently supported array types are:
numeric
numpy
If the requested type is not available, a ValueError will be raised.
"""
global __arraytype
arraytype = arraytype.lower ()
if arraytype == "numeric":
if __hasnumeric:
__arraytype = arraytype
else:
raise ValueError("Numeric arrays are not available")
elif arraytype == "numpy":
if __hasnumpy:
__arraytype = arraytype
else:
raise ValueError("numpy arrays are not available")
else:
raise ValueError("invalid array type")
def get_arraytype ():
"""pygame.sndarray.get_arraytype (): return str
Gets the currently active array type.
Returns the currently active array type. This will be a value of the
get_arraytypes() tuple and indicates which type of array module is
used for the array creation.
"""
return __arraytype
def get_arraytypes ():
"""pygame.sndarray.get_arraytypes (): return tuple
Gets the array system types currently supported.
Checks, which array system types are available and returns them as a
tuple of strings. The values of the tuple can be used directly in
the use_arraytype () method.
If no supported array system could be found, None will be returned.
"""
vals = []
if __hasnumeric:
vals.append ("numeric")
if __hasnumpy:
vals.append ("numpy")
if len (vals) == 0:
return None
return tuple (vals)
|