aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sound_towns.cpp
AgeCommit message (Collapse)Author
2008-09-07Got rid of all Common::File usages in Kyra.Johannes Schickel
svn-id: r34435
2008-09-02some minor bug fixesFlorian Kagerer
svn-id: r34288
2008-09-01- kyra: fm-towns/pc-98 audio: restructured driver, added rhythm channel dataFlorian Kagerer
svn-id: r34259
2008-08-21KYRA: Towns/PC-98-Audio: fixed bug where notes for which the hold flag was ↵Florian Kagerer
set were turned off nonetheless svn-id: r34087
2008-08-21KYRA: Towns/PC-98-Audio: increased precision for envelope generator timing ↵Florian Kagerer
and tempo when using "odd" output rates like 48 kHz or 8 kHz svn-id: r34079
2008-08-21KYRA: Towns/PC-98-Audio: tempo fix for output rates other than 44100 HzFlorian Kagerer
svn-id: r34078
2008-08-20KYRA: Towns/PC-98-Audio: fix bug where pitch wheel is processed twice ↵Florian Kagerer
instead of once svn-id: r34076
2008-08-20- add support for Italian floppy versionFlorian Kagerer
- more work on fm-towns music tempo svn-id: r34067
2008-08-20tempo fixFlorian Kagerer
svn-id: r34064
2008-08-19Fixed GCC warningMax Horn
svn-id: r34032
2008-08-19Use the correct and specified datatype int32 instead of only int.Lars Persson
svn-id: r34027
2008-08-19fixed warningsFlorian Kagerer
svn-id: r34019
2008-08-19fixed bug that caused a lockup in certain configurations when the music was ↵Florian Kagerer
fading svn-id: r34015
2008-08-18KYRA: FM-Towns/PC-98 Audio:Florian Kagerer
- adpcm decoding for rhythm channel - cleanup svn-id: r33993
2008-08-17KYRA: FM-Towns/PC-98 Audio:Florian Kagerer
- improved accuracy - complete percussion channel support (does not work atm though, since the instrument data is missing) - some cleanup svn-id: r33980
2008-08-16KYRA: Fm-Towns Audio: fixed crashFlorian Kagerer
svn-id: r33943
2008-08-16KYRA: Fm-Towns Audio: fixed music fadingFlorian Kagerer
svn-id: r33942
2008-08-16- KYRA: FM-Towns/PC-98 Audio: fixed several bugs and got rid of some ↵Florian Kagerer
floating point arithmetic (or at least replaced some doubles with floats) - Improved support for PC-98 music: HOF tracks seem to be fine, KYRA should be okay, too (I can't compare with an emulator since I am missing the floppy boot disk with the executable) - There are still tempo issues. Some tracks play way too slow, others way too fast - PC-98 sound effects in Kyra 1 don't work (I would need the floppy disk with the executable for that) svn-id: r33938
2008-08-02HOF: bug fix for FM-Towns music when using output rates other than 22050 khzFlorian Kagerer
svn-id: r33523
2008-07-20KYRA: disable incomplete PC-98 audio support for 0.12.0 release (use towns ↵Florian Kagerer
audio instead) svn-id: r33145
2008-07-13- fix for bug #2016965: KYRA: does not compile in MSVC71Florian Kagerer
svn-id: r33030
2008-06-30- this fixes Hof PC98 music initializationFlorian Kagerer
- music sounds exactly like FM-Towns for now svn-id: r32854
2008-06-29fix warningFlorian Kagerer
svn-id: r32843
2008-06-29cleanupFlorian Kagerer
svn-id: r32842
2008-06-29- some more work on the Hof FM-Towns/PC98 music driverFlorian Kagerer
- move channels to a separate class svn-id: r32841
2008-06-28Fixed warning. (Hopefully without breaking anything.)Torbjörn Andersson
svn-id: r32830
2008-06-28- implement music fading for Hof FM-TownsFlorian Kagerer
svn-id: r32829
2008-06-28hof: remove debug codeFlorian Kagerer
svn-id: r32821
2008-06-28- HOF: bug fix for music driverFlorian Kagerer
- KYRA1 PC98: fix music file selection svn-id: r32819
2008-06-26fix bad const castsFlorian Kagerer
svn-id: r32812
2008-06-26more cleanupFlorian Kagerer
svn-id: r32811
2008-06-26cleanupFlorian Kagerer
svn-id: r32810
2008-06-26Fixing compilation for me. There are still lots of "cast casts away ↵Sven Hesse
constness" warnings, though svn-id: r32809
2008-06-26- improved hof music support for fm-towns (driver for *.twn tracks) (still ↵Florian Kagerer
needs quite some work) - some PC-98 music support since it uses a very similar driver, but this can't be considered working yet) - Kyra 1 PC-98 music doen't work at all since I haven't figured out yet how to turn track numbers into the corresponding music file names (might require a hard coded track map) svn-id: r32807
2008-06-24Added const to some static data.Johannes Schickel
svn-id: r32763
2008-05-24Committed my fix for bug #1497437 "KYRA1: Subtitles glitch during 'Speech of ↵Johannes Schickel
the Land'". svn-id: r32260
2008-05-17- fixes bug #1962601 at least for intro and outroFlorian Kagerer
- add a mutex lock in sound_towns svn-id: r32155
2008-05-12fix valgrind warning and some cleanupFlorian Kagerer
svn-id: r32075
2008-05-12More naming consistency fixes (fixes old TODO).Johannes Schickel
svn-id: r32062
2008-05-12fix for kyra 3 sfx (broken by last commit)Florian Kagerer
svn-id: r32061
2008-05-11- Renamed KyraEngine to KyraEngine_v1Johannes Schickel
- kyra.* -> kyra_v1.* - scene.cpp -> scene_v1.cpp svn-id: r32044
2008-05-07Changed kyra to use delete[] instead of delete [].Johannes Schickel
svn-id: r31925
2008-04-10towns music file name fixFlorian Kagerer
svn-id: r31481
2008-04-04Cleaned up volume settings managment.Johannes Schickel
svn-id: r31385
2008-03-28- some accuracy changes for KyraEngine_v2::snd_playSoundEffect()Florian Kagerer
- fix one more skip flag bug in the sequence player - fix SoundTowns_v2::voicePlay() svn-id: r31278
2008-03-21Cleanup.Johannes Schickel
svn-id: r31210
2008-03-21- Implemented opcode 97: o2_isAnySoundPlayingJohannes Schickel
- reworked sound channel handling in HoF => fixed some voice related bugs svn-id: r31209
2008-02-17committing patch 1891492 : dialogue (dlg/tim) support for HoFFlorian Kagerer
- talking to NPCs is now possible. - Zanthia's talks when entering a new scene for the first time now work - using items on Zanthia is now possible. svn-id: r30886
2008-01-10Commit slighty modified patch #1865509 "KYRA: kyradat support for hof".Johannes Schickel
svn-id: r30394
2008-01-03Committed slightly modified patch #1862758 "KYRA: audio data assignment patch".Johannes Schickel
svn-id: r30198