summaryrefslogtreecommitdiffstats
path: root/src/sound
Commit message (Collapse)AuthorAgeFilesLines
* CInstanceManager refactoringPiotr Dziwiński2013-02-175-19/+4
| | | | | | | | | * removed classes managed by CInstanceManager except for CObject, CPyro, CBrain and CPhysics because of dependencies * refactored instance searching to use existing singleton instances of CApplication, CEngine and CRobotMain and calling their getter functions
* * Fixed sound pitch causing segfaulterihel2013-01-163-16/+39
| | | | | | * Sound support should now compile fine with MXE * Added cache for 3 music files to speedup loading * Updated howto
* * Removed aluterihel2013-01-147-67/+170
| | | | | * Using libsndfile to load sounds and music * Added support for playing music files
* * Fixed pitch calculation (sound in cut scenes will work as well as robot ↵erihel2013-01-096-63/+69
| | | | | | | tracks sound) * Fixed applying effects to sounds * Changed volume to range 0.0-1.0 except for values in UI
* * Fixed problem with freeing buffers while conneted to a source resulting ↵erihel2013-01-044-12/+45
| | | | | | with "Unable to unload buffer message" * Fixed posible segfault while trying to play sound after not loading file properly
* * Fixed segault when could not set sound pitch (bad logger call)erihel2012-12-283-19/+21
| | | | | * All 81 audio files should be loaded instead of 69 high quality * Changed volume ajustment formula to proper one
* * Changed Ret to Get methods in sound moduleerihel2012-12-252-11/+11
| | | | | * Added video settings to profile * Resolution change is now posibble but restart is required
* * Changed log level in sound moduleerihel2012-12-253-7/+7
| | | | | * Fixed warnings in sound module * Fixed problem with map loading when locale with different number separator
* sound fixerihel2012-12-204-112/+6
|
* removing plugins for gold version (for mxe cross compiling)erihel2012-12-2011-3/+1
|
* Put common CXX flags in common variablesDidier Raboud2012-12-192-2/+4
| | | | | CMAKE_CXX_FLAGS is taken into account in all builds; build-type-specific flags are appended to it.
* Don't enforce CMake build type on users.Didier Raboud2012-12-191-1/+3
| | | | Only set CMAKE_BUILD_TYPE to Debug when no value is provided.
* Merge branch 'master' into devPiotr Dziwinski2012-12-151-1/+1
|\
| * Add FindLTDL cmake moduleDidier Raboud2012-12-141-1/+1
| | | | | | | | | | | | | | As mentionned in FindLTDL.cmake, this is code that is hereby relicensed under GPLv3. closes #68
* | Doxygen/comment fixes and some #include refactoringPiotr Dziwinski2012-10-171-64/+62
|/
* Merge branch 'dev' into dev-graphicsPiotr Dziwinski2012-09-296-12/+11
|\
| * Profile rewritten to boost. Read/write to ini should work.Zaba9992012-09-271-1/+0
| | | | | | | | Load/Save should work.
| * Work in progress on opening files, and listing dirsZaba9992012-09-266-12/+12
| | | | | | | | | | Fixed includes profile changed from SimpleIni to boost::ptree -> not finished yet
* | Updated docs and some Doxygen fixesPiotr Dziwinski2012-09-271-2/+2
|/
* * Fixed audio problemserihel2012-09-223-61/+60
| | | | | | * Added colobot.ini to CApp in Create function * Fixes to plugin manager * Fixed CProfile segfault
* Whitespace fixPiotr Dziwinski2012-09-202-648/+648
|
* Successful compilation & runningPiotr Dziwinski2012-09-151-30/+30
| | | | | | | - temporarily mocked CSoundInterface and CPluginInterface - added CRobotMain to application - successfully compiles & runs, but doesn't display correctly at the moment
* CMainDialog rewritePiotr Dziwinski2012-09-151-10/+10
| | | | - rewritten CMainDialog and updated CRobotMain
* * Final changes to plugin interfaceerihel2012-08-123-10/+11
| | | | * Added doxygen comments to plugin manager and plugin loader
* Merge branch 'dev-opengl' into deverihel2012-08-121-3/+4
|\
| * Documentation updatePiotr Dziwinski2012-08-111-3/+4
| | | | | | | | | | | | - updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
* | * New CPluginManager class for managing plugins based on colobot.inierihel2012-08-1210-0/+1292
| | | | | | | | | | * Moved sound plugin into sound dir * Minor changes in logger and profile
* | Changes after mergeerihel2012-08-091-2/+2
| |
* | Merge branch 'dev' of https://github.com/adiblol/colobot into deverihel2012-08-091-315/+322
|\| | | | | | | | | Conflicts: src/sound/sound.h
| * Whitespace fixPiotr Dziwinski2012-07-271-321/+321
| |
| * Merge branch 'dev' into dev-openglPiotr Dziwinski2012-07-271-0/+3
| |\ | | | | | | | | | Pulled changes & resolved conflicts
| | * Compile fixesPiotr Dziwinski2012-07-261-0/+2
| | | | | | | | | | | | Fixed some compiling issues
| * | Merged changes from devPiotr Dziwinski2012-07-042-165/+318
| | | | | | | | | | | | Resolved conflicts & added fixes.
* | | * Chaned plugin interfaceerihel2012-07-191-6/+3
| |/ |/| | | | | | | * Added plugin class for plugin loading * Added plugin loading test
* | Enabled logging & minor fixesPiotr Dziwinski2012-07-041-0/+0
| | | | | | | | | | | | - added logger to main() - removed reference to Snd namespace and renamed back to sound.h - fixed minor issues
* | * Added CLogger class for loggin info to console or fileerihel2012-07-043-165/+318
|/ | | | | * Added CSoundInterface * Added basic plugin interface
* Whitespace and language changePiotr Dziwinski2012-06-261-111/+111
| | | | | | | - changed tabs to spaces and DOS line endings to Unix (except in CBot and metafile) - changed language to English - fixed #include <d3d.h> in d3dengine.h
* SDL projectPiotr Dziwinski2012-06-252-1901/+165
| | | | | | | | - added (very basic) SDL template in CApplication and CEngine - split project into two targets: colobot_old (dependent on DirectX and WinAPI) and colobot_new (dependent on SDL and OpenGL) - moved sound.h/cpp to old/ and created new template in Snd namespace - added platform-independent dialog boxes in app/system.h/cpp
* Templates for new implementationPiotr Dziwinski2012-06-221-1/+1
| | | | | | - added template of classes/structs for new implementation - changed #include paths - updated README files
* Switched to new implementation of the rest of math modulePiotr Dziwinski2012-06-192-19/+20
| | | | | | | | - changed structs from D3DVECTOR to Math::Vector and from D3DMATRIX to Math::Matrix - changed functions to new Math namespace functions - moved mainmovie module from graphics to object - added Get and Set to Math::Matrix
* FPOINT -> Math::Point & other math functionsPiotr Dziwinski2012-06-131-5/+4
| | | | | | | | | - changed FPOINT to Math::Point and some functions from math module to the new implementation - moved old function and FPOINT struct declarations to math3d.cpp - removed some unused functions in math module - fixed some #include dependencies - moved #define STRICT and #define D3D_OVERLOADS to compile options
* Changed #defined constants to consts; typedef struct -> structPiotr Dziwinski2012-06-112-12/+10
|
* BOOL -> bool; additional fixes in constructors/destructorsPiotr Dziwinski2012-06-102-159/+159
|
* Fixed include paths and CMakeLists.txtPiotr Dziwinski2012-06-102-8/+8
| | | | Additionally, changed #ifndef to #pragma once everywhere
* Source files split into modulesPiotr Dziwinski2012-04-283-0/+1906