- Reduce number of collectibles (some might come back in the future).
- Merge both DLC weaponsets into one, removing redundant weapons.
- Readjust prices of some items.
- Initial work on collectibles (currently Frispy Corn is done).
- Added bigfont for main menu, based on Source Han Sans.
- Reduced default HUD margin to 10.
- Added blob shadows.
- Added precise crosshair drawing.
- Tweaked decals, imported more stuff from UT.
- Swapped the Ynykron impact decal for something better.
- Fixes to slope alignment code.
- Implemented headpats for MBF Helper Dogs and Cacodemons.
- Implemented partial HDoom support, with love and headpats.
- Fix various string functions breaking on unicode.
- Added cracktro-style text scroll to Titlemap.
- Fixed handling of healthbars for friendly monsters.
- Workaround for maps that use the old author name hack (" - by: " separator).
- Fixed Silver Bullet not autoswitching on first pickup.
- Fixed misalignment of Silver Bullet zoomed aim.
- Silver Bullet is unchambered on first pickup, consistent with Candygun.
- Adjusted collision sizes of all items across the board.
- Implemented "Use To Pickup" to work around any issues introduced by the previous change.
- Swapped CHANF_LOOPING for CHANF_LOOP in many cases, this was a typo.
- Tweaked Biospark arc lengths, for balance and higher performance.
- Fix misaligned fire offsets of some weapons (most noticeable on Wallbuster).
- Prettified the loading disclaimers for BD and HDoom.
- Add pickup flash to all items.
- Add custom key models for Doom and Heretic.
- Fix blown kisses giving you "need key" messages.
- Fix worn armor and embiggeners not being removed on scripted inventory resets.
- Remove all references to the no longer planned Radio.
- Workaround for gzdoom devbuild quirk where MenuSound changed its argument type.
- Added timezone to fake clock.
- Fix some times and dates in said clock.
- SWWM blood now also hits ceilings.
- Added default properties to DLC ammo and weapon stubs.
- Lore entries for collectibles and dlc weapons (incomplete).
- Massive amount of typo fixes across the board.
53 lines
1.7 KiB
Text
53 lines
1.7 KiB
Text
version "4.4"
|
|
|
|
/*
|
|
SWWM GZ Main Codebase
|
|
(C)2020 Marisa Kirisame, UnSX Team
|
|
All with the exception of utility code released under the MIT license
|
|
<see LICENSE.zscript>
|
|
*/
|
|
|
|
// utility code
|
|
#include "zscript/swwm_libeye/projector.txt"
|
|
#include "zscript/swwm_libeye/projector gl.txt"
|
|
#include "zscript/swwm_libeye/projector planar.txt"
|
|
#include "zscript/swwm_libeye/viewport.txt"
|
|
#include "zscript/swwm_coordutil.zsc"
|
|
#include "zscript/swwm_quaternion.zsc"
|
|
// base code
|
|
#include "zscript/swwm_common.zsc"
|
|
#include "zscript/swwm_utility.zsc"
|
|
#include "zscript/swwm_handler.zsc"
|
|
#include "zscript/swwm_shame.zsc"
|
|
#include "zscript/swwm_thinkers.zsc"
|
|
#include "zscript/swwm_player.zsc"
|
|
#include "zscript/swwm_inventory.zsc"
|
|
#include "zscript/swwm_hud.zsc"
|
|
#include "zscript/swwm_hudextra.zsc"
|
|
#include "zscript/swwm_menu.zsc"
|
|
#include "zscript/swwm_crimesdlg.zsc"
|
|
#include "zscript/swwm_options.zsc"
|
|
#include "zscript/swwm_title.zsc"
|
|
#include "zscript/swwm_inter.zsc"
|
|
#include "zscript/swwm_strife.zsc"
|
|
#include "zscript/swwm_vanillaboss.zsc"
|
|
#include "zscript/swwm_blod.zsc"
|
|
#include "zscript/swwm_help.zsc"
|
|
// items
|
|
#include "zscript/swwm_health.zsc"
|
|
#include "zscript/swwm_armor.zsc"
|
|
#include "zscript/swwm_powerup.zsc"
|
|
#include "zscript/swwm_ammo.zsc"
|
|
#include "zscript/swwm_jackhammer.zsc"
|
|
#include "zscript/swwm_deepdarkimpact.zsc"
|
|
#include "zscript/swwm_splode.zsc"
|
|
#include "zscript/swwm_shot.zsc"
|
|
#include "zscript/swwm_cbt.zsc"
|
|
#include "zscript/swwm_danmaku.zsc"
|
|
#include "zscript/swwm_blazeit.zsc"
|
|
#include "zscript/swwm_sparkyboi.zsc"
|
|
#include "zscript/swwm_thiccboolet.zsc"
|
|
#include "zscript/swwm_tastytreat.zsc"
|
|
#include "zscript/swwm_deathlydeathcannon.zsc"
|
|
#include "zscript/swwm_funstuff.zsc"
|
|
#include "zscript/swwm_keys.zsc"
|