Mercurial > touhou
view pytouhou/ui/music.py @ 325:cddfd3cb4797
Add music support for >PCB.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 21 Jun 2012 15:01:01 +0200 |
parents | c412df42aa15 |
children | 61caded6b4f5 |
line wrap: on
line source
# -*- encoding: utf-8 -*- ## ## Copyright (C) 2012 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published ## by the Free Software Foundation; version 3 only. ## ## This program 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 General Public License for more details. ## from pyglet.media import AudioData, AudioFormat from pyglet.media.riff import WaveSource class InfiniteWaveSource(WaveSource): def __init__(self, filename, start, end, file=None): WaveSource.__init__(self, filename, file) self._start = self.audio_format.bytes_per_sample * start self._end = self.audio_format.bytes_per_sample * end if self._end > self._max_offset: raise Exception #TODO self._duration = None def _get_audio_data(self, bytes): bytes -= bytes % self.audio_format.bytes_per_sample data = b'' length = bytes while True: size = min(length, self._end - self._offset) data += self._file.read(size) if size == length: break self._offset = self._start self._file.seek(self._offset + self._start_offset) length -= size self._offset += length timestamp = float(self._offset) / self.audio_format.bytes_per_second duration = float(bytes) / self.audio_format.bytes_per_second return AudioData(data, bytes, timestamp, duration) def seek(self, timestamp): raise NotImplementedError('irrelevant') class ZwavSource(InfiniteWaveSource): def __init__(self, filename, format, file=None): if file is None: file = open(filename, 'rb') self._file = file assert b'ZWAV' == self._file.read(4) self.audio_format = AudioFormat( channels=format.wChannels, sample_size=format.wBitsPerSample, sample_rate=format.dwSamplesPerSec) self._start_offset = 0 self._offset = format.intro self._file.seek(self._offset) self._start = format.intro + format.start self._end = format.intro + format.duration