440 Commits

Author SHA1 Message Date
101746f268 Common.hpp: Refactor to remove <Windows.h> include 2022-02-22 00:46:15 -05:00
89986bdd65 Stop trying to make <ranges> happen, it's not going to happen 2021-10-25 22:34:11 -04:00
7865694d75 Merge remote-tracking branch 'origin/utf8' 2021-10-25 19:05:48 -04:00
f37a067174
Minor code cleanup 2021-07-10 19:38:41 -07:00
6b73240364 Fixes for macOS/Linux 2021-06-30 16:21:20 -04:00
603e066eed Use UTF-8 exclusively internally 2021-06-30 14:15:40 -04:00
6e896fa1d3
Fix crashes while moving tiles 2021-06-20 17:42:38 -07:00
3290b706fc EffectChorus: Fix large std::array compile error 2021-06-11 21:54:56 -04:00
d96be61e29
Fix GC compatiblity by always exporting id tables (if empty just write 0xFFFF) 2021-03-18 22:50:28 -07:00
217e791b88 Fix AppleClang -Wrange-loop-analysis warnings 2021-03-05 09:26:26 -05:00
df7136d265 Voice: Fix -Wmaybe-uninitialized with GCC9 2021-03-01 18:47:03 -05:00
454424b8b3 AudioGroupSampleDirectory: Fix -Wmaybe-uninitialized with GCC9 2021-03-01 18:36:37 -05:00
2ec749e6c7
Upgrade to qt 6 2021-01-23 16:27:34 -08:00
d3c4f568bb Fix target_atdna ordering 2021-01-06 20:27:57 -05:00
1275293327
Add utility function to convert panning values from [0,127] to [-1,1] 2020-10-24 15:58:29 -07:00
fa3188e569
Harden Listener against NaN as well 2020-09-27 22:07:01 -07:00
69bc5dd69f
Harden setVectors against NaN values 2020-09-27 14:36:18 -07:00
63a58858e8
Fix deprecation warnings in amuse-gui 2020-09-08 16:23:55 -07:00
f172427991 amuse-mkqticon: Use target_include_directories 2020-06-13 17:17:14 -04:00
aa9ef6e866
Merge commit 'cae2e9c' 2020-06-12 05:42:32 -07:00
cae2e9c897
Fix libPNG 2020-06-12 05:42:07 -07:00
281af5d997 Correct LIBPNG -> PNG 2020-05-27 21:40:04 -04:00
70380d8fbc Add Homebrew Qt5 path hint 2020-05-24 12:02:39 -04:00
6c7094f6fb
Fix casting error 2020-04-22 03:41:35 -07:00
Jack Andersen
5112228abd Update fmtlib 2020-04-11 12:49:30 -10:00
Jack Andersen
40efdcc38c Merge commit '92f44' 2020-04-10 18:59:32 -10:00
Jack Andersen
92f44407c6 Exclude CMake CXX standard from MSVC 2020-04-10 18:59:16 -10:00
Lioncash
99f00a7cba EffectReverb: Make use of std::array where applicable
Makes the array types more strongly typed and allows removing the use of
hardcoded array sizes.
2020-03-27 17:18:40 -04:00
Lioncash
5b6d736cfb EffectChorus: Make use of std::array where applicable
Same behavior, but with stronger typing.
2020-03-27 16:45:04 -04:00
Lioncash
be754a44a4 EffectDelay: Make use of std::array where applicable
Makes the arrays more strongly typed and allows dehardcoding some array
sizes.
2020-03-27 16:31:38 -04:00
Lioncash
5de0035adb EffectDelay: Make use of std::make_unique
Same behavior, but without the need for raw new or separately
memsetting.
2020-03-27 15:51:37 -04:00
9c75aeccbe
Fix C header export 2020-03-12 00:54:22 -07:00
b14b091f70 Remove redefinition of hash<QString> 2020-01-17 20:03:52 -05:00
Jack Andersen
c27bb5c435 Merge branch 'master' of ssh://git.axiodl.com:6431/AxioDL/amuse 2019-09-30 21:36:35 -10:00
Jack Andersen
5d4abb5fb1 Code style improvements 2019-09-30 21:34:12 -10:00
ae26ed2fda
Compile fixes 2019-09-14 10:07:52 -07:00
757defee7a
Merge pull request #43 from lioncash/array2
AudioGroupPool: Use std::array where applicable
2019-09-10 23:53:38 -07:00
02da440523
Merge pull request #41 from lioncash/include
VolumeTable: Remove unnecessary Common include
2019-09-10 23:53:29 -07:00
0dca047352
Merge pull request #40 from lioncash/const
Studio: Make _cyclicCheck a const member function
2019-09-10 23:53:19 -07:00
95ffcc2d16
Merge pull request #39 from lioncash/magic
Sequencer: Minor cleanup
2019-09-10 23:53:08 -07:00
035f407be7
Merge pull request #42 from lioncash/cmake
CMakeLists: Add MSVC standards conformance flags
2019-09-10 23:52:57 -07:00
Lioncash
321a229dfd AudioGroupPool: Use std::array where applicable
Makes the array types strongly-typed and also allows for size querying.
2019-09-10 21:09:10 -04:00
Lioncash
60dad60448 CMakeLists: Add MSVC standards conformance flags
Applies flags to make MSVC's compiler be more standards compliant.
2019-09-10 20:43:37 -04:00
Lioncash
a8c9d555fe VolumeTable: Use std::array where applicable
Makes the arrays strongly typed.
2019-09-10 20:29:44 -04:00
Lioncash
7bc23b7190 VolumeTable: Remove unnecessary Common include
We can just include <algorithm> directly to eliminate an indirect
include.
2019-09-10 20:27:10 -04:00
Lioncash
b92674e127 Studio: std::move studio instance in addStudioSend()
Avoids an unnecessary atomic reference count increment and decrement
2019-09-10 20:23:29 -04:00
Lioncash
04fbc328e9 Studio: Make _cyclicCheck a const member function
This doesn't actually modify the internal state of the studio instance,
so we can mark it as a const member function.
2019-09-10 20:20:37 -04:00
Lioncash
1b37122b12 Sequencer: std::move studio instances in constructor
Avoids an unnecessary atomic reference count increment and decrement
2019-09-10 20:08:38 -04:00
Lioncash
2c75668e0a Sequencer: Default ChannelState's destructor 2019-09-10 20:06:31 -04:00
Lioncash
9ec78d6b9f Sequencer: Always initialize ChannelState channel ID
Provides a deterministic initial state for the default constructor case.
2019-09-10 20:05:05 -04:00