Magnus Norddahl
e0a7e2e8cc
Add build time to cpublasinfo
2024-12-15 22:42:24 +01:00
Magnus Norddahl
82e748cb49
Fix typo
2024-12-15 16:41:24 +01:00
Magnus Norddahl
e002697598
Add cpublasinfo ccmd
2024-12-15 16:30:19 +01:00
Boondorl
4d5bba8d02
Clean up decal behavior
...
Only update the mesh if a decal was truly created/destroyed
2024-12-14 05:40:45 +08:00
Ricardo Luís Vaz Silva
e82c7d2428
remove "DECORATE" from error string
...
* print warning count as well
* allow treating warnings as errors
2024-12-13 16:46:48 -03:00
Ricardo Luís Vaz Silva
7fed2b85f6
remove version check for array type fix, to prevent crashes/etc with bad types
2024-12-12 15:19:18 -05:00
Ricardo Luís Vaz Silva
325817afdf
remove version check for array type fix, to prevent crashes/etc with bad types
2024-12-12 15:18:53 -05:00
Magnus Norddahl
1004d6ae20
Exclude inactive triangles from subdivide
2024-12-12 20:18:27 +01:00
Magnus Norddahl
ab7c7cb465
Allocate from the start of the free lists
2024-12-12 20:08:38 +01:00
Magnus Norddahl
c46896599c
Use the SSE2 version in debug builds as its faster when the optimizer isn't running
2024-12-12 20:08:08 +01:00
Magnus Norddahl
9729d8abc0
Fix median not getting initialized
...
Added some SSE2 code that wasn't faster unfortunately
2024-12-11 01:28:52 +01:00
Magnus Norddahl
6190ffecda
Also expand the bbox for the TLAS tree
2024-12-10 23:12:12 +01:00
Magnus Norddahl
bc5bf8ca7b
Increase the bounding box for numerical stability
2024-12-10 23:10:16 +01:00
RaveYard
3e10e3f551
Fix M_SaveBitmap stream buffer size
...
- credits to dpJudas for the solution
2024-12-10 01:28:56 -05:00
dpjudas
55aa1d44eb
Resize node buffer if too small
2024-12-08 04:40:24 +01:00
RaveYard
23a021dfca
Fix M_SaveBitmap stream buffer size
...
- credits to dpJudas for the solution
2024-12-04 19:38:11 -05:00
Christoph Oelckers
d1abc3eb8c
renamed things in file system to reduce Doom specific terminology.
2024-11-24 18:05:11 +01:00
Christoph Oelckers
a3475d3973
FileSystem cleanup.
...
* split off the Doom specific lookup with short 8 character names into its own class and cleaned up the interface a bit.
* get rid of all short name aliasing 'optimization' - modern compilers are capable of optimizing memcmp and memcpy to use equally efficient code so none of these hacks are needed anymore.
* added reader for Descent 3's HOG2 format - yet another of these endless uncompressed formats with just a different directory structure...
2024-11-24 17:59:16 +01:00
Christoph Oelckers
634a646c2d
take namespace enum out of namespace and added CheckNumForAnyName and CheckNumForFullNameInFile to clarify the meaning of CheckNumForFullName.
...
This is to take some renaming noise out of the upcoming refactoring.
2024-11-24 17:59:16 +01:00
Christoph Oelckers
ba2800d698
renamed GetFileFullName to GetFileName
2024-11-24 17:59:15 +01:00
Christoph Oelckers
9b62379645
removed -hashfiles after finding out it had been broken for an extended time period.
...
this is a strong indicator that nobody was using it - and I do not feel like fixing such an invasive feature with little utility.
2024-11-23 21:10:11 +01:00
Christoph Oelckers
e0778e23eb
M_SaveDefaults is also not part of the common engine backend.
2024-11-23 20:39:23 +01:00
Christoph Oelckers
ca3b0737ea
contain the statnum hack for visual thinkers on the game side.
...
This got used from precisely one place, which can easily handle it itself.
2024-11-23 20:39:23 +01:00
Christoph Oelckers
2dcd0fcda4
moved another declaration out of a global header.
2024-11-23 20:39:23 +01:00
Christoph Oelckers
f2b52f620b
move game-specific CVAR out of low level system code.
2024-11-23 20:39:22 +01:00
nashmuhandes
2e09abc4e8
Merge branch 'master' of https://github.com/ZDoom/gzdoom into gzd-master-experimental
2024-11-16 13:16:21 +08:00
Boondorl
3ea5be1ea7
Reworked FRandom constructors
...
Removes ambiguity while keeping old constructor syntax in check for better overall portability.
2024-11-15 23:56:23 -03:00
Boondorl
a1a4a97dcd
Added RNG snapshotting for predicting
...
Allows RNG seeds to be played back in a predictive way paving the road for predictive behaviors that rely on RNG.
2024-11-15 23:56:23 -03:00
Boondorl
597b06ae52
Added CRandom functions
...
Unique RNG namespace for client-side effects and HUDs. Identifiers for these cannot clash with identifiers that affect the playsim making them completely safe to use in HUD elements. They also won't be saved.
2024-11-15 23:56:23 -03:00
Boondorl
4c140224a2
Removed network message entirely
...
Header needs to include more data to properly filter someone trying to connect
2024-11-15 23:54:04 -03:00
Boondorl
8a14497d8c
Port NCMD_EXIT to i_net file
2024-11-15 23:54:04 -03:00
Boondorl
b6fd65988b
Added stubs for NetClose on other platforms
...
These will need someone with much better experience to implement correctly to abort the net window
2024-11-15 23:54:04 -03:00
Boondorl
e898139690
Fixed static error for SendConAck
2024-11-15 23:54:04 -03:00
Boondorl
3f4513c571
Updated packet handling
...
Added "game in progress" message for players trying to join late. Improved "unknown host" packet logging to only log when truly unknown. Correctly abort network window so game can process fatal errors instead of hanging on waiting to connect. Unexpected disconnects in lobby now correctly update the state of the game.
2024-11-15 23:54:04 -03:00
nashmuhandes
1770bbc0d0
Merge branch 'master' of https://github.com/ZDoom/gzdoom into gzd-master-experimental
2024-11-15 00:42:38 +08:00
nashmuhandes
b03dd471ca
Merge branch 'master' of https://github.com/dpjudas/VkDoom into gzd-master-experimental
2024-11-14 23:30:07 +08:00
Ricardo Luís Vaz Silva
925b62b8c5
serialize animData, update subsector on deserialize
2024-11-13 15:47:22 -03:00
Ricardo Luís Vaz Silva
174344ddf1
move visual thinker definition into its own header
2024-11-13 15:47:22 -03:00
Magnus Norddahl
7b75a080b9
Remove "first/second chance not available" spam from crash reports
2024-11-12 23:14:51 +01:00
nashmuhandes
42f577f6f1
Merge branch 'master' of https://github.com/ZDoom/gzdoom into gzd-master-experimental
2024-11-10 09:29:59 +08:00
Rachael Alexanderson
220200d836
Revert "- error out if destroying a canvas object"
...
This reverts commit 8e16822ef9 .
2024-11-08 14:26:51 -05:00
nashmuhandes
5464090800
Merge branch 'post-4.13' of https://github.com/madame-rachelle/gzdoom into gzd-master-experimental
2024-11-05 21:51:43 +08:00
Boondorl
d85d04f421
Fixed crash on functions with missing return values
2024-11-05 01:02:19 -05:00
Boondorl
57202305d6
Added toggle for lm_dynamic
2024-11-02 09:20:23 +01:00
Christoph Oelckers
a899571d8c
got rid of strlwr.
...
The 3 remaining uses were completely redundant.
2024-11-02 09:07:07 +01:00
nashmuhandes
2c45d9aa99
Merge remote-tracking branch 'remotes/ZDoom/gzdoom/4.13'
2024-11-01 21:17:09 +08:00
Magnus Norddahl
f5a0e01b2c
Support STARTUPSONG for the generic startupscreen
2024-10-30 00:37:08 +01:00
Magnus Norddahl
7bbd69e7e3
Improve start screen logo rendering by rendering it directly to screen instead of using StartupTexture
2024-10-30 00:00:46 +01:00
Christoph Oelckers
2cbb980388
Check array size for overflow.
...
Since ZScript is a 32 bit VM, the largest safe value for an array's physical size is 2GB. Any larger value will be destroyed by the compiler which relies on signed 32 bit values too much.
2024-10-28 12:07:15 -04:00
Christoph Oelckers
adeb48d598
Do a check if a local variable exceeds the available stack space.
...
Windows stack is 1 MB so play it safe and allow 512 kb as max. stack space for a single function.
2024-10-28 12:07:10 -04:00