Commit graph

1364 commits

Author SHA1 Message Date
Dale Glass
b2665cbd4e Fix warnings 2025-01-11 18:41:51 -08:00
Dale Glass
42d6128d9e Fix KTX issues with the serializer.
* Stop trying to be compatible with the old format, and just bump the version number.
* Add uint64_t support to serializer
* A bit improved debug output from serializer
* Add lastAdvance() function to ask the serializer how much data was added/read in the last operation.
2025-01-11 18:41:51 -08:00
Dale Glass
2cef749183 Update test to work with the split serializer/deserializer 2025-01-11 18:41:51 -08:00
Dale Glass
194eebf57c Finish Texture_ktx conversion to serializer 2025-01-11 18:41:51 -08:00
Dale Glass
9c97928751 Add benchmarks 2025-01-11 18:41:51 -08:00
Dale Glass
30ced59cec Fix vec4 serialization 2025-01-11 18:41:51 -08:00
Dale Glass
23a5795ba9 Initial version 2025-01-11 18:41:50 -08:00
Dale Glass
8e41908e49 Partial spherical harmonics tests 2025-01-11 18:41:50 -08:00
Dale Glass
53de22fd00
Merge pull request #993 from daleglass-overte/skip-capacity-test-in-debug
Skip packet capacity test when built in debug mode, as it triggers an assertion
2024-06-03 23:56:16 +02:00
Dale Glass
cd8459ffa5
Merge pull request #996 from daleglass-overte/add-qt-network-tests
Add very basic HTTP and HTTPS network tests.
2024-06-03 23:43:20 +02:00
Dale Glass
524863e9da
Merge pull request #994 from daleglass-overte/fix-resource-request-test
Add missing dependencymanager call, fixes test crash
2024-06-03 23:27:21 +02:00
Dale Glass
338256f234 Further explanatory comments 2024-06-03 23:14:11 +02:00
Dale Glass
aaf08cf523 Add another SSL test.
One gets the SSL version string. That initializes something in the guts of Qt,
and gets things unstuck. Another doesn't and gets stuck if called as the only test.
2024-06-03 23:10:17 +02:00
Dale Glass
57fcc378bf Expand the test 2024-06-03 20:55:38 +02:00
Dale Glass
62cd9c64c1 Fix indentation 2024-06-03 01:13:47 +02:00
Dale Glass
7076669635 Add very basic HTTP and HTTPS network tests.
This seems to reproduce the problem I'm having with the Conan PR
2024-06-03 01:11:48 +02:00
Dale Glass
70662da564 Add missing dependencymanager call, fixes text crash 2024-06-02 20:53:41 +02:00
Dale Glass
b1aa801714 Skip packet capacity test when built in debug mode, as it triggers an assertion 2024-06-02 10:49:17 +02:00
Dale Glass
30d5d6456c Log free space and an explanatory message. Fixes #971 2024-06-01 21:28:08 +02:00
Dale Glass
1e3ef06c35 Fill with zeroes instead of sizeof 2024-06-01 21:21:30 +02:00
Dale Glass
1f4116d283 Fix memory leak and memory overwrite. Closes #969 2024-06-01 20:08:55 +02:00
Dale Glass
bbc7c0a146 Replace randomization code, fixes #973 2024-06-01 19:46:34 +02:00
931b222098 Fix require behavior for modules 2024-03-05 23:24:34 +01:00
081ae901d2 glTF importer using cgltf library 2024-02-25 19:57:00 +01:00
Dale Glass
649c45f474
Merge pull request #710 from daleglass-overte/script-engine-benchmarks
Add initial benchmarks for the script engine
2023-12-03 17:46:09 +01:00
Dale Glass
aa2892c0f9 Remove unneeded comment per review 2023-12-03 17:45:19 +01:00
Dale Glass
bf7a0c6366 Add initial benchmarks for the script engine 2023-11-06 19:24:47 +01:00
Dale Glass
0c5726ce07 Fix test verification 2023-11-06 18:50:29 +01:00
Dale Glass
91f59a96ab Test a require() loop, for testing whether the engine can deal with it 2023-11-06 18:36:27 +01:00
Dale Glass
0cb86caa3a Remove unneeded line 2023-11-05 16:01:21 +01:00
Dale Glass
d23a17daa5 Add a test for bug #587
This will fail against the current master, since the current behavior is not correct.
2023-11-05 14:02:46 +01:00
Dale Glass
64c0364b2e Remove old tests, doesn't build on Windows 2023-05-19 00:17:39 +02:00
Dale Glass
d8488859e2 Add Quat tests, for debugging a problem 2023-05-19 00:17:39 +02:00
Dale Glass
6ac2596293 Capture exceptions that happen in signals in ScriptEngine, add test 2023-05-19 00:17:39 +02:00
Dale Glass
1e1b96765f Add test for update event 2023-05-19 00:17:39 +02:00
Dale Glass
acd19f7c40 Review fix: add flag to choose whether to abort script on exception 2023-05-19 00:17:39 +02:00
Dale Glass
8f82750f2a Initial implementation of raiseException and test 2023-05-19 00:17:39 +02:00
Dale Glass
0369949d9b Add tests for object registration and exception raising 2023-05-19 00:17:39 +02:00
Dale Glass
4beb5eceeb Tests for runtime exceptions and throw() 2023-05-19 00:17:39 +02:00
Dale Glass
2a5ec7db3d Rework tests, add tests for exceptions 2023-05-19 00:17:39 +02:00
Dale Glass
67e7a7375a Further exception work on V8
* Get rid of maybeEmitUncaughtException
* Mostly get rid of makeError
* Introduce exception hierarchy, change exceptions to shared_ptr
* Simplify exception throwing code
2023-05-19 00:17:39 +02:00
ae7d229d0e Fix copyright headers 2023-05-19 00:17:38 +02:00
Dale Glass
02a0e33e95 Add NETWORKLESS_TEST_SCRIPT type to NetworkManager.
This is a slightly hacky way to make ScriptManager work without any
networking, and minimize the number of dependencies needed to run
a test.
2023-05-19 00:17:38 +02:00
Dale Glass
e35aa8046d Add more Doxygen docs
Doesn't work right in ScriptManager, looks like a conflict with JSDoc
2023-05-19 00:17:38 +02:00
6bd8a8d503 V8 threading safetyu improvements 2023-05-19 00:17:37 +02:00
c8898e8366 Added script include test 2023-05-19 00:17:37 +02:00
e786fd4864 Fixed Script.require 2023-05-19 00:17:37 +02:00
386242d9c7 Fixed adding properties to methods 2023-05-19 00:17:37 +02:00
Dale Glass
e72bf600ce Add missing require test 2023-05-19 00:17:37 +02:00
Dale Glass
890f8e0bc2 Add missing dependency on script-engine 2023-05-19 00:17:36 +02:00