Christoph Oelckers
c753d59a72
- scriptified A_SkullPop and ObtainInventory.
...
These were the last relevant items to access PlayerPawn.InvFirst.
2019-01-03 00:35:56 +01:00
Christoph Oelckers
6eb8ded471
- made ColorRangeStart and ColorRangeEnd meta properties of APlayerPawn.
...
These are only used during initialization and they should have been readonly from the start.
2019-01-02 22:13:57 +01:00
Major Cooke
8bbbd95dfd
- Fixed: NODAMAGE was not accounted for with pain.
2019-01-02 15:37:43 +01:00
alexey.lysiuk
cb6b5e92ab
- added missing range checks to level compatibility handler
2019-01-02 16:35:23 +02:00
Christoph Oelckers
bc47fdfa78
- scriptified useflechette CCMD's item finding code.
2019-01-02 11:58:26 +01:00
Timo Myyrä
9e80caa85d
fix Unix builds without backtrace functions in their libc
...
backtrace functions are not present in all libc implementations. Cmake has
module to add external libraries into build if needed so use it to fix build on
Unix systems without backtrace in libc.
2019-01-02 08:44:26 +01:00
Christoph Oelckers
dc612703d5
- scriptified the declaration of AmbientSound
...
Most of the code is still native, but this means that PlayerPawn is the last remaining child of AActor.
2019-01-02 01:05:20 +01:00
Christoph Oelckers
cea97e5cc6
- fixed memory leaks in network code.
...
ReadString allocates a buffer, so saving it in a local variable and then forgetting it will not free the buffer afterward.
(This should probably be refactored to use some safer methods to read the string than this old-school method...)
2019-01-01 19:40:57 +01:00
Christoph Oelckers
d654e02dea
- rewrote dynamic lights to not use actors for the internal representation and made DynamicLight a purely scripted class.
...
This should be less of a drag on the playsim than having each light a separate actor. A quick check with ZDCMP2 showed that the light processing time was reduced to 1/3rd from 0.5 ms to 0.17 ms per tic.
It's also one native actor class less.
2019-01-01 19:35:55 +01:00
Christoph Oelckers
3f8d565dbb
- split up P_FreeLevelData, so that everything that clears out fields in FLevelLocals is now in a member function of that class.
2018-12-31 12:42:03 +01:00
Christoph Oelckers
c45e1cbbf0
- fixed typo in sky preparation.
2018-12-31 00:14:15 +01:00
player701
7c8cdf80d1
- Fixed settings_controller not updating properly when a player becomes the new arbitrator in a netgame.
2018-12-30 10:48:55 +02:00
Christoph Oelckers
53be21eb58
- added missing return in P_RemoveThing.
2018-12-30 08:40:04 +01:00
Christoph Oelckers
5ca6f9af9a
- added missing null pointer check to SBarInfo's inventory bar drawer.
2018-12-30 08:31:40 +01:00
Christoph Oelckers
65b01bd16d
- fixed incomplete commit.
...
I have no idea where the rest of this stuff went...
2018-12-30 08:22:34 +01:00
Christoph Oelckers
de375ce187
- fixed the direct native variant of DynamicLight.SetOffset.
2018-12-29 17:50:31 +01:00
Christoph Oelckers
4d34e5997b
- pass level as an argument to some code being used by the map loader.
2018-12-29 16:20:06 +01:00
Christoph Oelckers
eecf3a203a
- let UDMFParser use the level from the map loader, not the global variable.
2018-12-29 16:20:06 +01:00
Christoph Oelckers
f35ac75ca2
- fixed precaching of switches.
...
The backwards animation accessed the wrong array which in case of sequences with different length could crash
2018-12-29 14:01:07 +01:00
Christoph Oelckers
0aeaed4207
- use a TArray to store the sprite model hash to get rid of one atterm call.
2018-12-29 13:28:22 +01:00
Christoph Oelckers
313ec62a5c
- removed the static members from FMaterial.
...
Their functionality has been moved to more appropriate places already and they were essentially unused.
2018-12-29 13:28:22 +01:00
Christoph Oelckers
20184e1e99
- removed some unused bits of code.
2018-12-29 13:28:22 +01:00
Christoph Oelckers
3fbc55a8dd
- do not use global variables to track state in the decal code.
...
Setups like this have caused problems in the past so best get rid of it.
2018-12-29 13:28:22 +01:00
Christoph Oelckers
17e053499e
- reworked the lock code to remove the 255 locks limit and to allow it to automatically deinitialize.
2018-12-29 10:19:31 +01:00
Christoph Oelckers
982c622367
- fixed: The polyobject spawn point collector did not properly check for bad mapthings.
2018-12-29 08:49:53 +01:00
Christoph Oelckers
f31b1b92c9
- eliminated the two global FraggleScript variables by moving them into DFraggleThinker.
2018-12-29 01:18:21 +01:00
Christoph Oelckers
496dd4ee68
- treat non-existent arrays in the savegame as zero length.
2018-12-29 01:17:59 +01:00
Christoph Oelckers
cad43e431c
- cleanuo.
2018-12-28 23:19:01 +01:00
Christoph Oelckers
3559f7dffb
Merge branch 'master' of https://github.com/coelckers/gzdoom
2018-12-28 23:14:22 +01:00
Christoph Oelckers
5f303859e9
- made some changes to how the compatibility code works to allow removing the last remaining global variables of the map loading code.
...
Everything temporary is now part of the MapLoader class.
2018-12-28 23:14:11 +01:00
Christoph Oelckers
d066a1f10f
- renamed some variables because they were getting into the way of analyzing usage of the global variable of the same name.
2018-12-28 18:11:33 +01:00
Major Cooke
7acf43741a
Fixed: IsFakePain received the modified damage instead of the raw, preventing ALLOWPAIN from working as intended.
2018-12-28 17:23:55 +01:00
Christoph Oelckers
0e904286e8
- moved renderinfo.cpp entriely into the map loader.
2018-12-28 15:51:32 +01:00
Christoph Oelckers
e66e594dd0
- moved the sidetemp array into the map loader.
2018-12-28 15:30:23 +01:00
Christoph Oelckers
11e9cdae33
- split polyobject init into its own file and cleaned things up a bit.
2018-12-28 15:05:05 +01:00
Christoph Oelckers
9de2f5c1e7
- made polyobject init code part of MapLoader.
2018-12-28 14:48:10 +01:00
Christoph Oelckers
326e4d8559
- store the master pointer for the subsector lists in sector_t and the seg lists in side_t in FLevelLocals as a TArray instead of relying on the first element's pointer for this.
...
This simply way bad style.
2018-12-28 14:24:22 +01:00
Magnus Norddahl
c499c563a0
- remove WallSampler
2018-12-28 13:04:54 +01:00
Christoph Oelckers
64595abe60
- moved main polyobject array into FLevelLocals and simplified the setup process to not depend on P_SpawnMapThing.
...
Since the SpawnedThings array is still available when polyobjects are spawned it makes no sense to create an expensive linked list in P_SpawnMapThing.
This can be done far better by scanning through the array again and collect all matching items in a second array.
2018-12-28 10:08:39 +01:00
Christoph Oelckers
84a28454dc
- split maploader.cpp so that the parts that are not setting up the actual map data go back to p_setup.cpp.
2018-12-28 09:17:10 +01:00
Rachael Alexanderson
c980f1c27f
- g3.8pre
2018-12-27 23:46:21 -05:00
Magnus Norddahl
45d3df9df1
- remove pointless duplication of FWallCoords member variables
2018-12-28 01:13:58 +01:00
Magnus Norddahl
4d3d4ea746
- simplify colormap selection to a single function
2018-12-28 00:55:44 +01:00
Christoph Oelckers
467c73b2d7
- split P_SetupLevel so that the main part of it can be made part of the MapLoader class.
...
- allocate BlockNodes from the same memory arena as SecNodes.
2018-12-27 23:34:07 +01:00
Magnus Norddahl
c0a4ba5e82
- Simplify ProjectedWallLight light step setup and positioning
2018-12-27 22:52:33 +01:00
Magnus Norddahl
ed094d0b2f
- create a ProjectedWallLight class for the variables used to calculate light for columns
2018-12-27 22:03:02 +01:00
Christoph Oelckers
a47287f1e4
- use TArrays for all local allocations in the map loader.
2018-12-27 20:22:51 +01:00
Christoph Oelckers
6ae417725f
- removed the optional MAPINFO data handler and moved the 3 items still using it to the main parser file.
...
This thing made sense when GZDoom and ZDoom were separate projects to avoid having to change some core files for the added options.
Now, with only 3 ones remaining, one for FraggleScript and two for Extradata the overhead here is just too high. The 3 variables can just be moved to level_info_t without carrying along this much baggage.
2018-12-27 17:38:11 +01:00
Christoph Oelckers
2edf02d731
- moved map loader files to a subdirectory.
2018-12-27 17:11:10 +01:00
Christoph Oelckers
017b3f9dc7
- fixed OpenGL texture objects weren't deleted when a texture was destroyed.
2018-12-27 14:25:13 +01:00