smallmodel
f34aad03cd
Add script owner implementation
2024-11-09 00:18:59 +01:00
smallmodel
888e35466b
Drop error if the Script cannot load the file
2024-11-08 22:28:33 +01:00
smallmodel
af084542c4
Don't set the leadside
2024-11-05 21:48:14 +01:00
smallmodel
81e407a924
Add EXE_EXT
2024-11-03 21:45:27 +01:00
smallmodel
8addeedf5e
Fix event parameters being incorrectly archived
2024-11-03 15:33:14 +01:00
smallmodel
9ffb407d11
Fix incorrect/uninitialized token returned when there is a macro
2024-10-31 01:31:41 +01:00
smallmodel
9cd8133068
Fix the directory prefix when using filters for FS_ListFilteredFiles
2024-10-29 20:25:25 +01:00
smallmodel
da7cd03f09
Increase packed animation time precision
...
This tries to fix some client commands replaying
2024-10-27 13:42:42 +01:00
smallmodel
bf978256e9
Add changes from upstream, like pipefile, random number seed
2024-10-25 22:33:02 +02:00
smallmodel
9bd25e9734
Combine mouse movement events in event queue
2024-10-25 22:08:24 +02:00
smallmodel
31cb6216c9
Use a volatile variable to prevent the function from being entirely optimized
2024-10-25 21:06:30 +02:00
smallmodel
e75f5bbbfc
Version number typo
2024-10-25 21:01:01 +02:00
smallmodel
69cc87212a
Bumped the version number to 0.80.0 due to the number of changes and the completeness
2024-10-25 20:49:23 +02:00
smallmodel
e6a9968d23
Remove useless assertion
2024-10-23 20:25:17 +02:00
smallmodel
a3e5d62c96
Increase the precision of the delta animation time
2024-10-21 19:54:25 +02:00
smallmodel
0bb11d76bd
Remove accidental print
2024-10-20 22:22:36 +02:00
smallmodel
ed05983a57
Use ceiling for the packed anim time
...
This is an attempt to fix an issue where the animation time would deviate from 1 bit and would go back and forth
2024-10-20 22:19:57 +02:00
smallmodel
e9a76f933b
Cast to int32 rather than uint32 when writing the packed velocity
...
This fixes an issue where the integer could overflow, on some platforms like ARM the integer would be 0
2024-10-16 19:52:47 +02:00
smallmodel
6b6adf1147
Copy second and third triangles, this was forgotten
2024-10-16 18:28:41 +02:00
smallmodel
2b6fc0602a
Avoid misaligned memory access
2024-10-15 23:18:14 +02:00
smallmodel
53c09b5342
Correctly swap skeletons for CPUs that don't support misaligned memory access
2024-10-15 23:10:04 +02:00
smallmodel
f6b459b408
Correctly copy long/short taking into account memory overlaps
2024-10-15 22:49:23 +02:00
smallmodel
581585a47c
Prevent clearing the event command list if the event system is not initialized
...
This fixes the issue where the game could crash (especially in optimized release) due to a memory corruption, because the event command list was deconstructed earlier
2024-10-15 20:52:53 +02:00
smallmodel
ddbdcc91dd
Don't use an offset for the reverse table
2024-10-15 19:22:54 +02:00
smallmodel
2e673a6bc9
Delete posted events when canceling
2024-10-13 23:49:52 +02:00
Sébastien Noel
aa15b3ea7f
Allow to build against system libs instead of bundled copy
2024-10-07 20:51:23 +02:00
smallmodel
0b34d2dbb8
Fix ammo bits being incorrect
2024-10-02 23:04:30 +02:00
smallmodel
fc6bffe683
Don't post event when loading save game
2024-09-26 01:01:27 +02:00
smallmodel
5403577642
Fix the return value of FS_Seek
...
It returns a negative value on failure, so handle that properly
2024-09-25 21:04:55 +02:00
smallmodel
085b72154f
Use a more modern implementation of minizip from ioquake3
2024-09-24 22:25:33 +02:00
smallmodel
1fd6c2bd52
Merge pull request #360 from pryon/UINotepad-fixes
...
UINotepad fixes and improvements
2024-09-22 19:35:52 +02:00
smallmodel
8f355fe188
Add Voip code from ioq3
2024-09-22 16:50:44 +02:00
smallmodel
dacfa6ae55
Made common source file a C file as it should be
2024-09-22 16:03:02 +02:00
smallmodel
f53fba082a
Improve memory for debugging purposes
2024-09-22 15:45:29 +02:00
Zack Middleton
985731f543
Fix command line variables not being set correctly
...
+seta, +sets, and +setu were ignored because Com_AddStartupCommands
thought Com_StartupVariable handled it.
+set didn't allow value to be multiple tokens which due to Unix shell
unintuitively removing quotes causes the variable to only be set to
the first token. This could be worked around by escaping quotes
ioq3ded +set g_motd \"hello world\"
but it doesn't match behavior of other start up commands (which now
includes seta, sets, and setu) that use all tokens.
2024-09-22 13:47:55 +02:00
Thilo Schulz
7c28efe9cd
Fix bug where Com_StartupVariable would set CVAR_USER_CREATED on already existing cvars
2024-09-22 13:36:23 +02:00
smallmodel
4e5a0a30bf
Fix subtitle being incorrect due to the size of the pointer (and not the size of the string) being passed to Q_strncpyz
2024-09-21 21:09:12 +02:00
pryon
9ab37e54b4
Fix CodeQL printf argument type warning
2024-09-21 20:59:27 +02:00
pryon
c8a2de8235
Implement FS_FileTime
for proper retrieval of file date/size info in FilePicker
2024-09-21 19:37:50 +02:00
smallmodel
f9d264058b
Use safe version of sprintf and strcpy
2024-09-20 23:08:53 +02:00
smallmodel
1156d4f881
Replaced (u)int64_t with long long to avoid constructor conflicts with some compilers
2024-09-20 21:28:36 +02:00
smallmodel
61b4a817f3
Move alloca include directive to q_platform.h due to difference between platforms
2024-09-20 20:52:41 +02:00
smallmodel
015ebb650e
Clean up ClassDef class
2024-09-19 22:50:33 +02:00
smallmodel
17d623bf85
Add more clarity + check the length of the const_str enumeration and the length of the const string array to make sure they both match
2024-09-19 21:23:19 +02:00
Sébastien Noel
a010e648ee
Fix a few typos
2024-09-19 10:52:47 +02:00
smallmodel
41298b53d4
Add PRODUCT_VERSION_STAGE variable to define the stage of the software through builds
2024-09-18 18:13:57 +02:00
smallmodel
ef5759cff5
Don't execute commands during the intro
2024-09-15 01:21:20 +02:00
smallmodel
0b106cf47e
Print errors only when developer mode is set
2024-09-14 13:21:08 +02:00
smallmodel
e128c93ad9
Declare CL_FinishedStartStage
2024-09-13 21:25:41 +02:00
smallmodel
8a2e4ca470
Add Com_RandomBytes and Com_IsVoipTarget
2024-09-10 19:54:25 +02:00