Commit graph

5150 commits

Author SHA1 Message Date
iobyte
61bd378a68 add FindcJSON.cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9516 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 35b9ac5c374c32c9424b2b67a9837adbbe1316e8
Former-commit-id: 622ebf17bcd80adf777f4317bf5e6e572fd4d8da
2024-07-31 14:26:04 +00:00
iobyte
81fce0966e add cJSON and minizip to thirdpartydeps.cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9515 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5f4a5f51923ea856e8bc54989ac4d8ac1e9a478f
Former-commit-id: 035caa02e3af984140911cf92620990212af27a6
2024-07-31 14:04:58 +00:00
iobyte
dc412e624e fix minizip build
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9514 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d882b435174abe845c18e024b30678cdee7017de
Former-commit-id: ee13725326a72ad62cdc3469ba630f8decc0bdad
2024-07-31 03:36:00 +00:00
iobyte
8217fa0031 displayconfig: add some more monitor refresh rates
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9513 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 4b4a0bad723f1236ff822d9c7c3d276cee79f701
Former-commit-id: 33e4aceee9ed88dc656706b05df727eabb88a091
2024-07-31 03:25:52 +00:00
iobyte
276b612e8c 2rdParty: update SDL2 to latest version
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9512 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7f587000a536e8be5f84b7c95489c455d5e5263d
Former-commit-id: ef5194e0ac31c41c12a2de077956513769f1abac
2024-07-31 03:23:53 +00:00
iobyte
02274c89c7 fix checks.cmake
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9511 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 55c34f8296c7ae2840187dce3de63487269f865c
Former-commit-id: b6791f3e00792155e8cc32844f88e377f57da33a
2024-07-31 01:14:47 +00:00
iobyte
d7262c6526 fix Windows eventloop crash
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9510 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 50f2810b869040a5343e3b322cbd8f3dbcc09cc1
Former-commit-id: 6e4960da072b9cc99bf3540561bb15fe853f9e70
2024-07-31 01:03:57 +00:00
xavi92
e06a519365 Remove trailing newlines
The following shell script was used:

while read f
do
	sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' -- "$f"
done <<EOF
$(svn ls -R | grep \
	-e '.\cpp$' \
	-e '\.cmake$' \
	-e '\.txt$' \
	-e '\.cppcheck$' \
	-e '\.frag$' \
	-e '\.h$' \
	-e '\.hpp$' \
	-e '\.vert$' \
	-e '\.xml$' \
	-e '\.java$' \
	-e '\.c$')
EOF


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9509 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: aac7ab5702079417cb16ca2fa291be07033ea549
Former-commit-id: f0286e4119f166d7b78f9d13ff2ea04ffaa95c67
2024-07-30 22:17:48 +00:00
xavi92
665996fd28 Convert all files with dos2unix
Some files were written with UTF-8 with BOM encoding. Now, all files
should be UTF-8 only.

The following shell script was used:

while read f
do
	dos2unix -- "$f"
done <<EOF
$(svn ls -R | grep \
	-e '.\cpp$' \
	-e '\.cmake$' \
	-e '\.txt$' \
	-e '\.cppcheck$' \
	-e '\.frag$' \
	-e '\.h$' \
	-e '\.hpp$' \
	-e '\.vert$' \
	-e '\.xml$' \
	-e '\.java$' \
	-e '\.c$')
EOF


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9508 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 0b59a439a39e5c8a3be0d34b1a080038468c53e2
Former-commit-id: c15cc27f94228ae27cd2f712505c6bdd0cf15e30
2024-07-30 22:04:12 +00:00
xavi92
6d7ca06e02 String trailing whitespaces
The following shell script was used:

while read f
do
        sed -Ei 's/[[:space:]]+$//g' "$f"
done <<EOF
$(svn ls -R | grep \
        -e '.\cpp$' \
        -e '\.cmake$' \
        -e '\.txt$' \
        -e '\.cppcheck$' \
        -e '\.frag$' \
        -e '\.h$' \
        -e '\.hpp$' \
        -e '\.vert$' \
        -e '\.xml$' \
        -e '\.java$' \
        -e '\.c$')
EOF

As a side effect, this has also converted some files from CRLF line
endings to LF.

File extensions such as .ac or .osg were intentionally left out because
those usually are very large files generated by tools.



git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9507 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6c1e5ab34415982ec77fc92a77e1b1c149518eca
Former-commit-id: c6cf9480ae7c1d2f9a999eb6c6b976eef8bae3ba
2024-07-30 21:45:07 +00:00
iobyte
660e32020e remove cmake find_package curl
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9506 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f3d91e2c6001bad1c7c14b425501cff370444cdb
Former-commit-id: 13f7986fd6c31076c8664c245e74c3f8e481ea68
2024-07-25 14:04:52 +00:00
iobyte
67eeffab05 3rdParty: update to latest versions
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9505 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 4cdeec75c469767c162f0d2159b2e3aed8fa6a7a
Former-commit-id: cdc7c20aea5ae9faae2ea29573fd6d03b867c5b3
2024-07-25 12:43:03 +00:00
iobyte
61b4ceeade legacymenu: add curl dependency
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9504 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 32e4de10af2320cb9fea044b604f679a66ed7d21
Former-commit-id: 9ab4718317c7a596e0031446f89b44c36eba95ec
2024-07-24 20:57:04 +00:00
xavi92
e785f426d2 downloadsmenu.cpp: Extract asset on data directory
Otherwise, GfLocalDir and GfDataDir might be residing on different file
systems, and therefore rename(3) could fail with EXDEV ("Invalid
cross-device link").


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9503 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7ffb92a15b0e36930c930f279d75e940d8083527
Former-commit-id: e0947c2dba73073af5b1be4b60469474b9fd6dea
2024-07-24 16:22:20 +00:00
xavi92
0cc87184ea downloadsmenu.cpp: Fix typo
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9502 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: eb7f37d7d005d33a87be913d984582472909fcf4
Former-commit-id: 1cd69820252ff46f776beaea4b2abe2627578b20
2024-07-24 16:11:41 +00:00
xavi92
7135e836d6 downloadsmenu.cpp: Fix wrong return value
Whenever an error occurs, libcurl expects a value different than size,
and not a negative value. This should fix signed-to-unsigned diagnostic
messages from some implementations.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9501 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 328c49f1644e946096f78b581f2d3fac6b3eea7a
Former-commit-id: 3beaee432ff7f655b11aaa3f2c33f2600e86d9ae
2024-07-24 16:11:08 +00:00
iobyte
9f566208e7 fix protability rmdir_r link error
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9500 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c054513c48a9d6c4e57296b3e601f399772ffe28
Former-commit-id: 9711139713547b129c6374b95cbcc25b24d0a892
2024-07-24 00:08:03 +00:00
iobyte
53c321cfad fix curl header file compile error
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9499 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1124f22f0c2dfdd30e774d022801073f1d7761d4
Former-commit-id: 2fbd6bd193ae97328a2e0351ac3ea78ca53237d5
2024-07-24 00:05:48 +00:00
iobyte
e520583509 legacymenu: add missing include files to CMakeLists.txt
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9498 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: facfa6d8b23c669e6232c697465c6e0c190c1f5b
Former-commit-id: 8e836f44b3c2db85d0a5764d0d1373122f2399de
2024-07-22 18:19:31 +00:00
iobyte
7782ac66c6 portability: fix windows build
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9497 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 12629e2498a827919084b3a953a2ed4db51ff1b0
Former-commit-id: 242b719aff3a589bbfd277fd4dc9bcbfea72d38d
2024-07-22 16:36:09 +00:00
iobyte
e3c6a0d4a2 3rdParty: add zlib dependency for minizip
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9496 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3069823fa03db7bc9959476a5a895765e468d3e4
Former-commit-id: 63a982d56e9960444d10761fea5ccf654c8ea77e
2024-07-22 16:09:56 +00:00
iobyte
07522bc4b8 3rdParty: fix cmake file
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9495 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3f51ae1e738c910221d62f8f47bba70800630d23
Former-commit-id: 3eb5b6967938117af3609cf778c64e25b8cfa338
2024-07-20 19:16:57 +00:00
xavi92
5ee1a1adcf win32.cpp: Fix syntax errors
This file was originally in C99 and (poorly) adapted to C++, which
caused some syntax errors as C++ holds different rules compared
to C99.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9494 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d7020315ae5cd1d5657c44695ec321e15be7545f
Former-commit-id: 2a88f57ba6e41584074a6410edcecf39463f868a
2024-07-19 15:17:40 +00:00
iobyte
b433af1e9a 3rdParty: add minizip and cjson
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9493 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3a1a0eb230a4a0f44c0a2e2523e60eb2209ed826
Former-commit-id: f4fd83e6fdebd8deb4fc1265c9829c351673ef2f
2024-07-19 14:37:01 +00:00
iobyte
6ccba70934 update to latest curl
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9491 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e59fe8152280e4c58f0bea1c659abd54356abc6e
Former-commit-id: b09e9078acbb1c7121c895661c71cebcaa08fa1d
2024-07-16 20:48:42 +00:00
xavi92
4dd8b822e6 Implement in-game download manager
This in-game download manager allows users to fetch assets, such as
cars, tracks or drivers, from a configurable list of servers following a
specific JSON schema.

Several smaller classes have been designed to assist the download
manager:

- entry: defines an entry in the assets lists and its state.
- thumbnail: defines a visible entry on the list, will always match
one entry.
- writebuf: allows dumping a file downloaded over HTTP{S} to memory.
- writefile: allows dumping a file downloaded over HTTP{S} to a file.
- unzip: a higher-level, C++ wrapper to minizip.

It was also required to implement a function that removed directories
recursively, namely rmdir_r. Since this is not portable accross POSIX
and Windows systems, their respective implementations have been provided
on src/libs/portability.

The following dependencies have been added:
- libcurl: HTTP{S} operations, already required by webserver.
- OpenSSL: hash calculation.
- minizip: zip extraction, it required its on Findminizip.cmake as it is
not provided by upstream CMake.
- zlib: required by minizip.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9490 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 915908c54f5ea8d7f6926943b2fea670e9973bea
Former-commit-id: 9cb2a8874779f6b4d9d6201f3d8af8b29c067a13
2024-07-15 03:27:16 +00:00
xavi92
afe8b2fa8b Add JSON schema and example for assets lists
The JSON schema provides a machine and human-readable specification of
the assets lists that implementors must follow so that Speed Dreams can
fetch them. An example JSON file has also been provided.

Run check-jsonschema(1) to test an assets JSON file. It can be
downloaded via `pip install check-jsonschema`.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9489 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bff0b86104dfe3e88896e1d5bfcfa35be2008265
Former-commit-id: e830b70b32d944c24515452ebd76f0dfdb0a6860
2024-07-15 03:07:48 +00:00
xavi92
dea67f471a legacymenu: Build with standard C++11
Future commits will make use of C++11 features.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9488 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: f05b17bcd17f756665d440da4ed8c29a61ca9785
Former-commit-id: 459a21a593e3a2e129a7a1aa08b2cabd45931780
2024-07-15 03:06:48 +00:00
xavi92
b584e3668c guilabel.cpp: Remove length limitation
For some unknown reason, labels could not have their text reassigned to
a longer text, being limited to the length of the first text that was
ever assigned to it.

This seems like an arbitrary limitation that does not introduce any
regressions, so it is probably reasonable to remove it.

Additionally, future commits will make use of labels whose text could be
reassigned several times.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9487 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 2536884b05c76ec5788ef59fc8556cc5a9fe3705
Former-commit-id: 2deec2b67b979e173b4f878dbed1811ebdde475e
2024-07-15 03:05:59 +00:00
xavi92
73dd7a7d49 guimenu.cpp: Avoid fixed-length buffer for path
There is no actual reason why the path length ought to be limited to
1024 bytes. Since strPath was already a std::string, it made sense to
use to concatenate all tokens with it and use c_str instead.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9486 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1ffcb2a1e6b949ce31ddc3466921997b38855f44
Former-commit-id: 1a0565184bdc86ad5c7fd10f1db29b08ae000953
2024-07-15 03:05:28 +00:00
xavi92
fd80f2335a eventloop: Support arguments on recompute callback
This will be used by future commits.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9485 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 45f75ac5601b75d4b9abd1d6962dd2144fc20005
Former-commit-id: 1191050c84198aae6f224c7b50eecad6a10fde7b
2024-07-15 03:04:36 +00:00
xavi92
9914e9d24c Implement maximum frame rate limit
This new configuration can be adjusted from the display configuration
screen and allows to cap maximum fps so that CPU load is greatly
reduced, especially on menu screens.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9484 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b63c4a7c907bbfb3fc8d44a6a77c7c1948341174
Former-commit-id: c331b396c32d1fd7d57b17ab880f44b808e12088
2024-07-15 02:52:31 +00:00
iobyte
ab2286b71e trackgen: add default material to object files when missing
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9483 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e7a0bdbb8cf07257c37bc52a7c6b6ccef20f3ad2
Former-commit-id: 14d24fac0947c96e6c1e04c8bfa6bdfa1ed474c7
2024-07-14 15:05:39 +00:00
iobyte
3c262350cf trackgen: remove bad triangles and empty objects
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9482 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: eb3324a025e15b163352db320a3d6e1dbd3fe352
Former-commit-id: 8249e2fce56988a9ac900e13f5ed2777d947a3b9
2024-07-13 23:29:02 +00:00
iobyte
a5ead10fba show the track 3d model
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9481 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e910b486c2cb6146c99ba54ff7f4c19c4fed7c9c
Former-commit-id: cc770246dc7c20c526d10d8cc496026123b75283
2024-07-13 16:52:21 +00:00
iobyte
71b57e502c trackeditor: show option to change graphic file extension to match export type
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9480 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ff783e6ae1d7075403844631776f8d1e099faf87
Former-commit-id: 2c9ed4b8e1dd881d583d29e59985276fb61192a8
2024-07-13 15:15:25 +00:00
iobyte
a619a69a9a trackgen: remove empty objects from models
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9479 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3aa936cc73f0e42c17738f71639fa03cc94abde0
Former-commit-id: b15cfc67ba81a3f547f8831f37ec2f0e1321eb27
2024-07-12 20:09:22 +00:00
iobyte
92012b0dae trackgen: update regression tests for acc files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9478 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b25b545db8c424314d067231dda4e028a6416537
Former-commit-id: 8c65052505b1e407fdb3ced553354d3c38e41f95
2024-07-12 15:52:15 +00:00
iobyte
31f050dfd0 trackgen: fix bad triangle detection
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9477 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 20d9024c965a3231918890615b03a6165cac9992
Former-commit-id: e6ff127e31af2ef335afc94569ef12207d5cd862
2024-07-12 15:13:20 +00:00
iobyte
bf7e9cb8dc trackgen: warn about bad triangles
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9476 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d74a998e693635954b1471d7a909c72b14a88268
Former-commit-id: ccc80ca1ffd501cbb71e701234f2a98cc5b4ad11
2024-07-12 02:32:00 +00:00
iobyte
c838ec5768 trackgen: fix hang from bad models
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9475 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d302f8b8bb1fff419a57b6858be2179820d393b4
Former-commit-id: 87ef5c399df84f938f7baaa7c9b17e49e9c99f5f
2024-07-11 16:26:03 +00:00
iobyte
d664b8da9f trackgen: update version
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9474 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 1afaaf71e28eea4bc0e3ea47d9f3e762f832c544
Former-commit-id: d3cd2b4b361049fc65089b6588bcb4ab83c0577e
2024-07-11 15:42:04 +00:00
iobyte
a809475b47 trackgen: fix double sided normals
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9473 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e80bca4f9f393817be4061918f20e9dba886be68
Former-commit-id: 48b0dff667dc927c6452b2630b2ecccb95442a73
2024-07-11 15:12:02 +00:00
iobyte
cb897f2621 trackgen: update version
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9472 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e4daa881d40a1ce79ed1efc998a4c1071b83200c
Former-commit-id: 0219ab2f223178a62ec979203bc4908d0bed7707
2024-07-10 20:45:33 +00:00
iobyte
a221addca8 trackgen: fix normal generation
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9471 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 2ce6ca6355d456c2134349a9d412246a12865105
Former-commit-id: c3bd3b135d28b95221a7ac402ad60b3593d5df09
2024-07-10 20:44:22 +00:00
iobyte
f8ea0c2426 trackgen: fix generated normals when outputting acc files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9470 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a0df34cdfd1dded9febe978ffa079b5d32b259f1
Former-commit-id: dde3690787777feb9af0c45ab3a182574291edad
2024-07-08 23:23:20 +00:00
iobyte
b3c35cf85b osggraph: fix acc loader when it finds bad traingles
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9468 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 103f70883cad6cd5ea8e1e3f090ea8b50a7fffe4
Former-commit-id: 41de3f3b7427b9b6ab6cbd62af6c422f338262d3
2024-07-01 15:52:50 +00:00
iobyte
a8224fd5fe trackgen: check raceline files in regression tests
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9467 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 63edac72891624206387c7dcc68b430d3f1870fa
Former-commit-id: 836c22843cd8e7731cabf3a59cbddedb8b59aaf2
2024-06-29 18:18:04 +00:00
iobyte
7f246e9029 trackgen: check more renamed files in regression tests
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9466 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: dc645fc0ddfad202b2c9d05a265d9e444c07261c
Former-commit-id: a30acd4b958cf635bc0282363410e8a9d78ecb95
2024-06-29 17:54:02 +00:00
iobyte
2e0d19fdf8 trackgen: check all generated files in all regression tests
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9465 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ead1245da84ff8fc2433868801340168942b81c5
Former-commit-id: 67d998b6356b9e31d64e0dd68b2accdcd5f072a6
2024-06-29 17:22:47 +00:00