Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/coelckers/gzdoom
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed May 31, 2020
2 parents 4c11b01 + 80c5b4d commit ff99dfb
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 28 deletions.
1 change: 1 addition & 0 deletions src/common/engine/namedef.h
Expand Up @@ -810,6 +810,7 @@ xx(MoveBob)
xx(StillBob)
xx(ClassicFlight)
xx(WBobSpeed)
xx(WBobFire)
xx(PlayerClass)
xx(MonsterClass)
xx(MorphedMonster)
Expand Down
5 changes: 0 additions & 5 deletions src/common/platform/win32/win32basevideo.cpp
Expand Up @@ -33,10 +33,7 @@
*/

#include <windows.h>
#include <GL/gl.h>
#include "wglext.h"

#include "gl_sysfb.h"
#include "hardware.h"
#include "x86.h"
#include "templates.h"
Expand All @@ -52,8 +49,6 @@
#include "win32basevideo.h"
#include "cmdlib.h"

#include "gl_framebuffer.h"

CVAR(Int, vid_adapter, 1, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)

//==========================================================================
Expand Down
9 changes: 7 additions & 2 deletions src/d_netinfo.cpp
Expand Up @@ -65,6 +65,7 @@ CVAR (Bool, neverswitchonpickup, false, CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (Float, movebob, 0.25f, CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (Float, stillbob, 0.f, CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (Float, wbobspeed, 1.f, CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (Float, wbobfire, 0.f, CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (String, playerclass, "Fighter", CVAR_USERINFO | CVAR_ARCHIVE);
CVAR (Bool, classicflight, false, CVAR_USERINFO | CVAR_ARCHIVE);

Expand All @@ -80,6 +81,7 @@ enum
INFO_MoveBob,
INFO_StillBob,
INFO_WBobSpeed,
INFO_WBobFire,
INFO_PlayerClass,
INFO_ColorSet,
INFO_ClassicFlight,
Expand Down Expand Up @@ -629,7 +631,7 @@ bool D_SendServerInfoChange (FBaseCVar *cvar, UCVarValue value, ECVarType type)
{
if (netgame && !players[consoleplayer].settings_controller)
{
Printf("Only setting controllers can change %s\n", cvar->GetName());
Printf("Only setting controllers can change server CVAR %s\n", cvar->GetName());
cvar->MarkSafe();
return true;
}
Expand Down Expand Up @@ -659,7 +661,10 @@ bool D_SendServerFlagChange (FBaseCVar *cvar, int bitnum, bool set, bool silent)
{
if (netgame && !players[consoleplayer].settings_controller)
{
if (!silent) Printf("Only setting controllers can change %s\n", cvar->GetName());
if (!silent)
{
Printf("Only setting controllers can change server CVAR %s\n", cvar->GetName());
}
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/g_game.cpp
Expand Up @@ -1102,7 +1102,7 @@ void G_Ticker ()
if (ToggleFullscreen)
{
ToggleFullscreen = false;
AddCommandString ("toggle fullscreen");
AddCommandString ("toggle vid_fullscreen");
}

// do things to change the game state
Expand Down
27 changes: 18 additions & 9 deletions src/maploader/maploader.cpp
Expand Up @@ -1702,13 +1702,6 @@ void MapLoader::LoadLineDefs (MapData * map)
}
else
{
// patch missing first sides instead of crashing out.
// Visual glitches are better than not being able to play.
if (LittleShort(mld->sidenum[0]) == NO_INDEX)
{
Printf("Line %d has no first side.\n", i);
mld->sidenum[0] = 0;
}
sidecount++;
if (LittleShort(mld->sidenum[1]) != NO_INDEX)
sidecount++;
Expand Down Expand Up @@ -1747,6 +1740,22 @@ void MapLoader::LoadLineDefs (MapData * map)
ProcessEDLinedef(ld, mld->tag);
}
#endif
// cph 2006/09/30 - fix sidedef errors right away.
for (int j=0; j < 2; j++)
{
if (LittleShort(mld->sidenum[j]) != NO_INDEX && mld->sidenum[j] >= Level->sides.Size())
{
mld->sidenum[j] = 0; // dummy sidedef
Printf("Linedef %d has a bad sidedef\n", i);
}
}
// patch missing first sides instead of crashing out.
// Visual glitches are better than not being able to play.
if (LittleShort(mld->sidenum[0]) == NO_INDEX)
{
Printf("Line %d has no first side.\n", i);
mld->sidenum[0] = 0;
}

ld->v1 = &Level->vertexes[LittleShort(mld->v1)];
ld->v2 = &Level->vertexes[LittleShort(mld->v2)];
Expand Down Expand Up @@ -2180,11 +2189,11 @@ void MapLoader::LoadSideDefs2 (MapData *map, FMissingTextureTracker &missingtex)
// killough 4/4/98: allow sidedef texture names to be overloaded
// killough 4/11/98: refined to allow colormaps to work as wall
// textures if invalid as colormaps but valid as textures.

// cph 2006/09/30 - catch out-of-range sector numbers; use sector 0 instead
if ((unsigned)LittleShort(msd->sector)>=Level->sectors.Size())
{
Printf (PRINT_HIGH, "Sidedef %d has a bad sector\n", i);
sd->sector = sec = nullptr;
sd->sector = sec = &Level->sectors[0];
}
else
{
Expand Down
4 changes: 4 additions & 0 deletions src/playsim/d_player.h
Expand Up @@ -232,6 +232,10 @@ struct userinfo_t : TMap<FName,FBaseCVar *>
{
return *static_cast<FFloatCVar *>(*CheckKey(NAME_WBobSpeed));
}
double GetWBobFire() const
{
return *static_cast<FFloatCVar *>(*CheckKey(NAME_WBobFire));
}
int GetPlayerClassNum() const
{
return *static_cast<FIntCVar *>(*CheckKey(NAME_PlayerClass));
Expand Down
6 changes: 6 additions & 0 deletions src/playsim/p_user.cpp
Expand Up @@ -790,6 +790,12 @@ DEFINE_ACTION_FUNCTION(_PlayerInfo, GetWBobSpeed)
ACTION_RETURN_FLOAT(self->userinfo.GetWBobSpeed());
}

DEFINE_ACTION_FUNCTION(_PlayerInfo, GetWBobFire)
{
PARAM_SELF_STRUCT_PROLOGUE(player_t);
ACTION_RETURN_FLOAT(self->userinfo.GetWBobFire());
}

DEFINE_ACTION_FUNCTION(_PlayerInfo, GetMoveBob)
{
PARAM_SELF_STRUCT_PROLOGUE(player_t);
Expand Down
1 change: 0 additions & 1 deletion src/rendering/hwrenderer/hw_entrypoint.cpp
Expand Up @@ -25,7 +25,6 @@
**
*/

#include "gl_system.h"
#include "gi.h"
#include "a_dynlight.h"
#include "m_png.h"
Expand Down
1 change: 1 addition & 0 deletions wadsrc/static/menudef.txt
Expand Up @@ -1046,6 +1046,7 @@ OptionMenu "HUDOptions" protected
Slider "$DSPLYMNU_MOVEBOB", "movebob", 0, 1.0, 0.05, 2
Slider "$DSPLYMNU_STILLBOB", "stillbob", 0, 1.0, 0.05, 2
Slider "$DSPLYMNU_BOBSPEED", "wbobspeed", 0, 2.0, 0.1
Slider "$DSPLYMNU_BOBFIRE", "wbobfire", 0, 1.0, 0.1
StaticText " "
Slider "$DSPLYMNU_MENUDIM", "dimamount", 0, 1.0, 0.05, 2
ColorPicker "$DSPLYMNU_DIMCOLOR", "dimcolor"
Expand Down
21 changes: 11 additions & 10 deletions wadsrc/static/zscript/actors/player/player.zs
Expand Up @@ -2301,8 +2301,6 @@ class PlayerPawn : Actor
Vector2 p1, p2, r;
Vector2 result;

float bobtarget;

let player = self.player;
if (!player) return (0, 0);
let weapon = player.ReadyWeapon;
Expand All @@ -2326,17 +2324,16 @@ class PlayerPawn : Actor
// [RH] Smooth transitions between bobbing and not-bobbing frames.
// This also fixes the bug where you can "stick" a weapon off-center by
// shooting it when it's at the peak of its swing.
bobtarget = double((player.WeaponState & WF_WEAPONBOBBING) ? player.bob : 0.);
if (curbob != bobtarget)
if (curbob != player.bob)
{
if (abs(bobtarget - curbob) <= 1)
if (abs(player.bob - curbob) <= 1)
{
curbob = bobtarget;
curbob = player.bob;
}
else
{
double zoom = MAX(1., abs(curbob - bobtarget) / 40);
if (curbob > bobtarget)
double zoom = MAX(1., abs(curbob - player.bob) / 40);
if (curbob > player.bob)
{
curbob -= zoom;
}
Expand All @@ -2347,11 +2344,14 @@ class PlayerPawn : Actor
}
}

// The weapon bobbing intensity while firing can be adjusted by the player.
double BobIntensity = (player.WeaponState & WF_WEAPONBOBBING) ? 1. : player.GetWBobFire();

if (curbob != 0)
{
//[SP] Added in decorate player.viewbob checks
double bobx = (player.bob * Rangex * ViewBob);
double boby = (player.bob * Rangey * ViewBob);
double bobx = (player.bob * BobIntensity * Rangex * ViewBob);
double boby = (player.bob * BobIntensity * Rangey * ViewBob);
switch (bobstyle)
{
case Bob_Normal:
Expand Down Expand Up @@ -2710,6 +2710,7 @@ struct PlayerInfo native play // self is what internally is known as player_t
native float GetAutoaim() const;
native bool GetNoAutostartMap() const;
native double GetWBobSpeed() const;
native double GetWBobFire() const;
native double GetMoveBob() const;
native double GetStillBob() const;
native void SetFOV(float fov);
Expand Down

0 comments on commit ff99dfb

Please sign in to comment.