|
|
5fa8e4a3a3
|
Mingw compilation fixes
|
2023-10-08 15:58:51 +03:00 |
|
|
|
f743201565
|
Remove useless copy when creating mp3 track from blob
|
2023-10-08 13:51:29 +03:00 |
|
|
|
03ae98d8a9
|
Audio::loop fixes
|
2023-10-06 18:57:34 +03:00 |
|
|
|
52b18c07a4
|
Fix echo effect
|
2023-10-05 17:12:20 +03:00 |
|
|
|
51a5bcd3bc
|
Add all-pass echo filter
|
2023-10-04 14:34:25 +03:00 |
|
|
|
9e0babfd2c
|
Add echo effect
|
2023-10-04 14:34:17 +03:00 |
|
|
|
76c91e50c1
|
New gcc compilation fixes
|
2023-10-03 21:32:13 +03:00 |
|
|
|
9a800b8f7a
|
Implement first-order feedback audio filter
|
2023-10-03 14:32:31 +03:00 |
|
|
|
9cbb9127b9
|
Implement true audio::white_noise
|
2023-10-03 14:32:17 +03:00 |
|
|
|
831dd7b688
|
Don't use std::isspace in kerned font implementation
|
2023-10-02 23:26:04 +03:00 |
|
|
|
8be3544295
|
Fix creating audio track from util::blob
|
2023-10-02 17:25:51 +03:00 |
|
|
|
424ed06ecb
|
Fix audio::concat
|
2023-10-02 17:25:35 +03:00 |
|
|
|
8c8ede7587
|
Add util::split(string, delim)
|
2023-10-01 01:19:31 +03:00 |
|
|
|
27a9c9ee7b
|
Support access bits in gfx::buffer::map
|
2023-09-17 20:19:36 +03:00 |
|
|
|
6e366cea16
|
UI component factory base exception bugfix
|
2023-09-10 13:44:52 +03:00 |
|
|
|
85a6ade2cb
|
More ECS API todo's
|
2023-08-26 22:53:00 +03:00 |
|
|
|
e16ebb8822
|
Add some ECS API todo's
|
2023-08-26 22:12:25 +03:00 |
|
|
|
85c0c56e03
|
Add static asserts in ecs::entity_component::apply/batch_apply to check that all component types are different
|
2023-08-26 22:11:55 +03:00 |
|
|
|
f46b3bdc40
|
Minor ecs::entity_container documentation fixes
|
2023-08-26 22:00:56 +03:00 |
|
|
|
7183a441e5
|
Fix ecs::entity_container::batch_apply for empty component types
|
2023-08-26 22:00:41 +03:00 |
|
|
|
bc63d98d51
|
Move ecs::entity_accessor to a separate header
|
2023-08-26 21:53:02 +03:00 |
|
|
|
8b1157c641
|
Implement ecs::entity_container::attach/detach
|
2023-08-26 18:24:10 +03:00 |
|
|
|
59c803d31c
|
ECS library wip: rewrite tables using explicit columns
|
2023-08-26 12:33:14 +03:00 |
|
|
|
1d20bd5a17
|
Fix util::hash_table inserting non-const pair
|
2023-08-26 12:32:54 +03:00 |
|
|
|
24d1f1e5bf
|
Add more hash_table tests
|
2023-08-24 18:50:48 +03:00 |
|
|
|
5a1db3097b
|
Add util::hash_table::empty
|
2023-08-24 18:50:40 +03:00 |
|
|
|
d2604bc5ce
|
Fix moving util::hash_table
|
2023-08-24 18:50:31 +03:00 |
|
|
|
31ffd4dc54
|
Remove component bitsets from ecs; use uuid hash tables instead
|
2023-08-24 17:33:19 +03:00 |
|
|
|
809a0ec212
|
Make util::hash_table search heterogeneous & add hash_table::contains
|
2023-08-24 17:32:57 +03:00 |
|
|
|
183644d46f
|
Add proper util::hash_table move constructor & assignment
|
2023-08-24 17:32:33 +03:00 |
|
|
|
8adfe7320b
|
Fix util::hash_table::find
|
2023-08-24 17:32:17 +03:00 |
|
|
|
1e74639ff4
|
Fix util::hash_table_iterator::advance
|
2023-08-24 17:31:50 +03:00 |
|
|
|
dbeee752b7
|
Speed up searching for ecs table columns using a hash_map<uuid, column_id>
|
2023-08-24 16:26:29 +03:00 |
|
|
|
a27378a3a7
|
Add util::hash_set/map with some tests
|
2023-08-24 16:24:47 +03:00 |
|
|
|
d3fa7fdfea
|
Make ecs::entity_accessor::get throw the documented exception
|
2023-08-24 16:19:49 +03:00 |
|
|
|
6bab38a545
|
Better ecs::entity_container documentation
|
2023-08-24 10:48:57 +03:00 |
|
|
|
3701df15f4
|
Support creating new ecs entities while iterating over them
|
2023-08-23 17:46:50 +03:00 |
|
|
|
d7babe6a0f
|
Fix destroying ecs tables
|
2023-08-23 17:00:42 +03:00 |
|
|
|
b99371dc29
|
Support removing ecs entities while iterating over them using apply
|
2023-08-23 16:10:39 +03:00 |
|
|
|
c0668e2de2
|
Bugfix in ecs entity creation in case a table with the same components but in a different order already exists
|
2023-08-23 14:47:26 +03:00 |
|
|
|
72508eb445
|
Support ecs::entity_container::batch_apply & store full entity handles (instead of entity IDs) in ECS tables
|
2023-08-23 12:58:00 +03:00 |
|
|
|
0b562a26c1
|
Add entity_container to ECS system arguments; make both entity_container and entity_handle optional arguments
|
2023-08-23 12:22:50 +03:00 |
|
|
|
0f621a9f3f
|
Add ecs::entity_container::attach/detach declarations (no implementation yet)
|
2023-08-23 00:05:12 +03:00 |
|
|
|
fee1f647b2
|
Add declare_uuid macro to simplify creating ecs component classes
|
2023-08-23 00:04:41 +03:00 |
|
|
|
2d2362d85c
|
More util::uuid functions: create from string, check for/convert to RFC 4122
|
2023-08-23 00:04:05 +03:00 |
|
|
|
8a7891d561
|
Make util::hash_combine and hash_sequence constexpr
|
2023-08-23 00:01:52 +03:00 |
|
|
|
9f36dfc0e4
|
Make compilation fail if ecs::entity_container::create is called with several equal component types
|
2023-08-22 23:24:49 +03:00 |
|
|
|
c59a28433a
|
Better ecs::entity_accessor interface
|
2023-08-22 23:15:56 +03:00 |
|
|
|
82682c0317
|
Refactor ecs::entity_container & add documentation
|
2023-08-22 22:36:04 +03:00 |
|
|
|
c1991cbb57
|
ECS library wip: support explicit query cache
|
2023-08-22 21:18:53 +03:00 |
|