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

WIP: Overhaul the cvar system. Improve the robustness of virtual cvars #5

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Jul 18, 2021

  1. cvar: Use the generic linked list for cvars. Made virtual cvars actua…

    …l cvar_t's
    
    * cvar_hash_t is gone
    * Virtual cvars now use a linked list around their parent and have a
      pointer to their parent.
    * Cvars will now store their own hashindex to make deletions from the
      hashtable easier. Implemented Cvar_Delete where this is leveraged.
      Cvar_FindVarLink is eliminated also. Not needed anymore.
    * Implemented Cvar_DeleteVirtual and Cvar_DeleteVirtual_All
      to... delete virtual cvars.
    * Eliminated redundancy of Cvar_SetQuick_Internal by merging it with
      Cvar_SetQuick.
    * Misc cleanups
    Cloudwalk9 committed Jul 18, 2021
    Configuration menu
    Copy the full SHA
    4ae5fd3 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2021

  1. Configuration menu
    Copy the full SHA
    72c9288 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    711d36a View commit details
    Browse the repository at this point in the history
  3. cvar: Finish reimplementing RestoreInitState and SaveInitState. Fix c…

    …rash when deleting vcvars
    Cloudwalk9 committed Jul 22, 2021
    Configuration menu
    Copy the full SHA
    4e77b50 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2021

  1. Configuration menu
    Copy the full SHA
    a3471b9 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2021

  1. Configuration menu
    Copy the full SHA
    6d93c4f View commit details
    Browse the repository at this point in the history