Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VScript changes #47

Merged
merged 7 commits into from
Sep 23, 2020
Merged

VScript changes #47

merged 7 commits into from
Sep 23, 2020

Commits on Aug 30, 2020

  1. Configuration menu
    Copy the full SHA
    0087e6d View commit details
    Browse the repository at this point in the history
  2. vscript changes:

    c_baseentity.h
    c_baseentity.cpp
       - Renamed GetLeftVector to GetRightVector
       - Renamed GetTeamNumber to GetTeam
    
    baseentity.h
    baseentity.cpp
       - Renamed GetLeftVector to GetRightVector
       - Renamed Get/SetRender functions (GetAlpha -> GetRenderAlpha)
       - Fixed CBaseEntity::GetScriptId
       - Added hook CBaseEntity::UpdateOnRemove
       - Added CBaseEntity::GetOrCreatePrivateScriptScope
       - Added CBaseEntity::GetDebugName
       - Added CBaseEntity::GetGravity
       - Added CBaseEntity::SetGravity
       - Added CBaseEntity::GetFriction
       - Added CBaseEntity::SetFriction
       - Added CBaseEntity::GetMass
       - Added CBaseEntity::SetMass
       - Added CBaseEntity::SetName (SetNameAsCStr)
       - Added CBaseEntity::SetParent (ScriptSetParent)
       - Added CBaseEntity::SetThink (ScriptSetThink)
       - Added CBaseEntity::StopThink (ScriptStopThink)
       - Added CBaseEntity::SetThinkFunction (ScriptSetThinkFunction)
       - Added CBaseEntity::StopThinkFunction (ScriptStopThinkFunction)
       - Added CBaseEntity::ApplyAbsVelocityImpulse
       - Added CBaseEntity::ApplyLocalAngularVelocityImpulse
    
    player.h
    player.cpp
       - Renamed GetPlayerUserId to GetUserID
       - Added CBasePlayer::GetFOV
       - Added CBasePlayer::GetFOVOwner (ScriptGetFOVOwner)
       - Added CBasePlayer::SetFOV (ScriptSetFOV)
    
    vscript_consts_shared.cpp
       -Added RAD2DEG, DEG2RAD, MAX_COORD_FLOAT, MAX_TRACE_LENGTH
    
    vscript_funcs_shared.cpp
       - Renamed IsClientScript,IsServerScript to IsClient,IsServer
       - Added IsDedicatedServer
       - Added NPrint (Con_NPrintf)
       - Removed DebugDrawBoxDirection (debugoverlay.BoxDirection)
       - Removed DebugDrawText (debugoverlay.Text)
    
    vscript_server.cpp
       - Added CDebugOverlayScriptHelper (debugoverlay)
       - Added CEntities::GetLocalPlayer
       - Added DispatchParticleEffect (ScriptDispatchParticleEffect)
       - Removed DebugDrawBox (debugoverlay.Box)
       - Removed DebugDrawLine (debugoverlay.Line)
    
    vscript_squirrel.cpp
       - Changed stub error messages for consistency and clarity
       - Changed errorfunc output to Warning instead of Msg
       - Added Msg, Warning
       - Added clamp, min, max, RemapVal, RemapValClamped
       - Added sqstdtime.h
       - Added clock, time, date
    samisalreadytaken committed Aug 30, 2020
    Configuration menu
    Copy the full SHA
    8672b7b View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. Configuration menu
    Copy the full SHA
    d13f2a3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    88cebe3 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2020

  1. Configuration menu
    Copy the full SHA
    f8f47e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80822cd View commit details
    Browse the repository at this point in the history
  3. Move sqstdtime.h

    samisalreadytaken committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    5e21095 View commit details
    Browse the repository at this point in the history