Merge branch 'monster's-miscellaneous-meddling' into 'master'
Monster's miscellaneous meddling A miscellaneous assortment of code-cleanup and other changes, plus fixing up SRB2's tangent array so it behaves more as expected (especially on the Lua side). More specific details of the changes: (MUST-HAVE CHANGES) * `finetangent[]` has been entirely redone in the same manner as finesine/finecosine. * Lua's tan() function shifts `finetangent[]` results by `ANGLE_90` to get what you EXPECT it to return (e.g. `tan(0)` actually returns 0 now). This means finetangent itself doesn't need to change its general arrangment, this only affects Lua specifically. * Lua's tan() function now also doesn't go out of `finetangent[]`'s bounds at all. Before, `tan(ANGLE_180)` through `tan(ANGLE_MAX)` and such would just give you values unrelated to the array in question, which was clearly a bad thing. (CAN PROBABLY LIVE WITHOUT?) * `finecosine`'s definition moved from r_main.c to tables.c. * Created `P_CheckTimeLimit` for `cv_timelimit`, much like `cv_pointlimit` has `P_CheckPointLimit`. It cleans up `P_UpdateSpecials` a bit at least. * Some code cleanup relating to translucency maps - these are kind of unimportant, I was about to stop `FF_TRANSMASK` being used everywhere, but this was apparently a bad idea so I backtracked a bit. * Re-added `_MSC_VER` check around MSVC-specific code in doomtype.h, in case it wasn't defined (and `__OS2__` was). Also left a comment there regarding `__BYTEBOOL__`. * Fixed an apparent copy+paste goofup in `joyaxis_cons_t[]` for the Wii-specific code. See merge request !10
Showing
- src/doomtype.h 4 additions, 1 deletionsrc/doomtype.h
- src/g_game.c 0 additions, 3 deletionssrc/g_game.c
- src/lua_mathlib.c 3 additions, 1 deletionsrc/lua_mathlib.c
- src/p_inter.c 116 additions, 1 deletionsrc/p_inter.c
- src/p_local.h 1 addition, 0 deletionssrc/p_local.h
- src/p_saveg.c 1 addition, 1 deletionsrc/p_saveg.c
- src/p_spec.c 3 additions, 98 deletionssrc/p_spec.c
- src/r_main.c 0 additions, 9 deletionssrc/r_main.c
- src/r_plane.c 13 additions, 29 deletionssrc/r_plane.c
- src/r_segs.c 12 additions, 36 deletionssrc/r_segs.c
- src/r_splats.c 1 addition, 1 deletionsrc/r_splats.c
- src/r_things.c 2 additions, 2 deletionssrc/r_things.c
- src/st_stuff.c 0 additions, 31 deletionssrc/st_stuff.c
- src/tables.c 514 additions, 514 deletionssrc/tables.c
- src/v_video.c 3 additions, 3 deletionssrc/v_video.c
Loading
Please register or sign in to comment