aboutsummaryrefslogtreecommitdiff
path: root/sound/mods
AgeCommit message (Collapse)Author
2010-09-06COMMON: Some style fixes.Johannes Schickel
svn-id: r52609
2010-08-11GUI: add music devices for c64, amiga and apple II gsFlorian Kagerer
These devices are not able to create appropriate drivers. The only purpose for now is having proper gui options and flags and music types for the device detector. The corresponding GUIO flags for the new devices have been added, too. svn-id: r51995
2010-06-15Fix spelling, cleanupMax Horn
svn-id: r49843
2010-05-25Patch #3006178: "rjp1: calculate sample length correctly"Max Horn
Fixes bug #3001110: "FOTAQ Amiga: crashes reporting assertion failure" Added a NEWS entry to the patch. svn-id: r49210
2010-02-17Fix gcc warning.Johannes Schickel
svn-id: r48077
2010-02-14Add support for samples > 32kb to Paula chip emulation code.Max Horn
In addition, the code got simplified considerably. Its behavior changed slightly due to this, but I think the old behavior was wrong. In any case, this may fix some bugs, or introduce regressions, or both. We'll see ;). svn-id: r48058
2010-01-25Strip trailing spaces/tabs.Johannes Schickel
svn-id: r47541
2010-01-23Some more header modifications ("Graphic Adventure Engine" and the legal ↵Arnaud Boutonné
property paragraph) svn-id: r47489
2010-01-19Fixed some cppcheck warnings.Torbjörn Andersson
svn-id: r47393
2010-01-03Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is nullTorbjörn Andersson
before freeing it, which isn't necessary. svn-id: r46941
2009-11-25Fix 'randomly placed' doxygen comments (which lead to incorrect ↵Max Horn
documentation, e.g. some of those ended up as doxygen comment for various namespaces, such as Common) svn-id: r46136
2009-11-02Changed foo(void) to foo() in almost all non-backend source filesMax Horn
svn-id: r45616
2009-10-09Remove some unused variablesMax Horn
svn-id: r44853
2009-10-08Change doxygen inline comments from "//!" to "///" as proposed on -develMax Horn
svn-id: r44802
2009-09-30Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other ↵Max Horn
things) svn-id: r44495
2009-09-13Removed unnecessary semi-colons.Torbjörn Andersson
svn-id: r44048
2009-08-29fix SFX not playing before music startedNorbert Lange
svn-id: r43799
2009-08-27This just fix the compile errors on AmigaOS (bug #2845660)Sven Hesse
svn-id: r43772
2009-08-24Merge with trunkNorbert Lange
svn-id: r43701
2009-08-20fixed small mistake with the sinetableNorbert Lange
moved pow2table into the only function using it svn-id: r43563
2009-08-18dont keep some unused parts of the mdatfile in memoryNorbert Lange
svn-id: r43506
2009-08-18added tiebreaking to pickVoice, now the use of channels is better distributedNorbert Lange
added a fixedpoint pow2 function (similar to the original) - no floats used anymore at the expense of a 512 byte table added a sinetable for the modulation effect. svn-id: r43505
2009-08-13(re-)initialise some Variables when sound is stoppedNorbert Lange
svn-id: r43351
2009-08-13sound_amiga: honor _musicEnabled and _sfxEnabled flagsNorbert Lange
maxtrax: initialise lastvolume svn-id: r43337
2009-08-10fixed bug in tempoeffectNorbert Lange
svn-id: r43204
2009-08-10fix potential leak in loadscoreNorbert Lange
added parameters to constructor svn-id: r43203
2009-08-09fixed up some missing newlinesNorbert Lange
removed MSVC6 disable pragmas, the warnings are already disabled in the project files svn-id: r43182
2009-08-08fix a bug that prevented gcc from compilingNorbert Lange
correctly added my palette patch (it showed up in the rev-changes but dint got applied fully to the svn tree?) svn-id: r43116
2009-08-08slighty changed how voices get disabled after their sample playedNorbert Lange
svn-id: r43111
2009-08-08added missing stuff for modulation and microtonal effects (several bugs in ↵Norbert Lange
original player - dont think this was ever used) added compiletime macros for modulation and microtonal moved common initialization stuff into a new resetPlayer() method reworked stopEvents, made them simpler and inlined the noteOff function added check for allocation and IO-Errors to the load-function. svn-id: r43110
2009-08-07refactored noteOnNorbert Lange
removed channel.voicesActive variable svn-id: r43104
2009-08-07implemented "SPECIAL" commandsNorbert Lange
addid missing stacklock for a few public functions svn-id: r43100
2009-08-07added stub for setting audio filter in PaulaNorbert Lange
fixed wrong value for volume in maxtrax svn-id: r43099
2009-08-05move function definitions from header to the cpp fileNorbert Lange
moved a few functions to static scope svn-id: r43077
2009-08-05added some error messages to the compile-time checksNorbert Lange
svn-id: r43076
2009-08-05moved check if class should be compiled to the headerNorbert Lange
svn-id: r43075
2009-08-05fixed wrong indentationNorbert Lange
moved notetable to static scope svn-id: r43074
2009-08-05check if modplayers should be compiled based on engine-macrosNorbert Lange
svn-id: r43073
2009-08-04cleaned up sound_amiga.cpp a bit, added checks for missing filesNorbert Lange
svn-id: r43050
2009-08-04added warning should the sound files not be available (intro will hang if ↵Norbert Lange
there is no musictimer) svn-id: r43049
2009-08-04moved helper functions from the header file into the cpp fileNorbert Lange
svn-id: r43047
2009-08-04added doxygeb commentsNorbert Lange
added checks to public functions if resources already got loaded svn-id: r43046
2009-08-04moved code for initialising patterns into own functionNorbert Lange
added initialisation of return-addresses for patterns and macros svn-id: r43045
2009-08-04Some formatting changes and added commentsNorbert Lange
fixed parameters for "Play macro" command fixed copypaste-mistake for pattern-fade svn-id: r43032
2009-08-02made some unused methods privateNorbert Lange
svn-id: r42986
2009-08-02fix some more harmless warnings to make gcc shutupNorbert Lange
svn-id: r42985
2009-08-02fixed some constness warningsNorbert Lange
svn-id: r42984
2009-08-02made MdatResource struct private and changed the signatures of functions ↵Norbert Lange
which load the resources. svn-id: r42982
2009-08-01stole formatting for constructors from existing codeNorbert Lange
svn-id: r42981
2009-08-01engines/scumm/scumm.cpp: terminate method is pretty redundant - removedNorbert Lange
tfmx, player_v4a: refactored Tfmx to allow sharing of resources between 2 instances. Needed changes in player_v4a aswell svn-id: r42980