File tree
5 files changed
+18
-1
lines changed- src
- test/projectloader
5 files changed
+18
-1
lines changedSubmodule libscratchcpp updated 51 files
- .github/workflows/utests-minimal.yml+28
- CMakeLists.txt+1-1
- include/scratchcpp/iengine.h+15
- include/scratchcpp/ispritehandler.h+6
- include/scratchcpp/istagehandler.h+6
- include/scratchcpp/script.h+1-1
- include/scratchcpp/sound.h+6
- include/scratchcpp/sprite.h+3
- include/scratchcpp/stage.h+3
- include/scratchcpp/target.h+2
- include/scratchcpp/value.h+1
- src/audio/CMakeLists.txt+3
- src/audio/iaudioengine.h+21
- src/audio/internal/audioengine.cpp+26-4
- src/audio/internal/audioengine.h+13-3
- src/audio/internal/audioenginestub.cpp+26
- src/audio/internal/audioenginestub.h+24
- src/audio/internal/audioplayer.cpp+1
- src/blocks/eventblocks.cpp+45
- src/blocks/eventblocks.h+5
- src/blocks/looksblocks.cpp+9
- src/blocks/sensingblocks.cpp+34-2
- src/blocks/sensingblocks.h+2
- src/engine/internal/engine.cpp+74-24
- src/engine/internal/engine.h+13-1
- src/engine/script.cpp+16-20
- src/engine/script_p.h-2
- src/scratch/sound.cpp+52-2
- src/scratch/sound_p.h+5
- src/scratch/sprite.cpp+30-4
- src/scratch/stage.cpp+18
- src/scratch/target.cpp+15-1
- test/assets/sound_test.cpp+81-10
- test/audio/CMakeLists.txt+18
- test/audio/audioengine_test.cpp+31
- test/blocks/event_blocks_test.cpp+173
- test/blocks/sensing_blocks_test.cpp+29-9
- test/blocks/sound_blocks_test.cpp+5-3
- test/compiler/CMakeLists.txt+1
- test/engine/engine_test.cpp+88-19
- test/mocks/audioenginemock.h+13
- test/mocks/enginemock.h+6
- test/mocks/spritehandlermock.h+3
- test/mocks/stagehandlermock.h+3
- test/mocks/targetmock.h+4
- test/regtest_projects/547_stop_clone_threads_in_stop_all.sb3
- test/scratch_classes/sprite_test.cpp+49-5
- test/scratch_classes/stage_test.cpp+22
- test/scratch_classes/target_test.cpp+16
- test/script/script_test.cpp+40-16
- test/target_interfaces/ispritehandler_test.cpp+13-1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
| 94 | + | |
| 95 | + | |
94 | 96 | | |
95 | 97 | | |
96 | 98 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
| 259 | + | |
259 | 260 | | |
260 | 261 | | |
261 | 262 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| 113 | + | |
113 | 114 | | |
114 | 115 | | |
115 | 116 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
188 | 188 | | |
189 | 189 | | |
190 | 190 | | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
191 | 204 | | |
192 | 205 | | |
193 | 206 | | |
| |||
0 commit comments