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

Polymorphic ruler version 4 #3

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

Commits on Aug 20, 2022

  1. Split update across classes and make it polymorphic within Ruler

    Rework update so that it is polymorphic. Break it into multiple files and allow the ruler's creator to set the updater with a unique pointer creator.
    micpap25 committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    70435e7 View commit details
    Browse the repository at this point in the history
  2. Remove circular dependencies

    Streamline the dependencies of Updater and Ruler. Extract all necessary data for Updater functions down to Updater, and rework ruler calls to use this format. This allows Updater to be independent of Ruler.
    micpap25 committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    75a4c2d View commit details
    Browse the repository at this point in the history
  3. Extract RulerPanel

    Separates Ruler from RulerPanel to reduce unnecessary importing.
    micpap25 committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    9b94c01 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a8db980 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    37153d2 View commit details
    Browse the repository at this point in the history
  6. Add functionality to CustomUpdater

    Properly implements Custom functions and uses the LinearDb ruler as a space to test it.
    micpap25 committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    21e3f77 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2671400 View commit details
    Browse the repository at this point in the history
  8. Create SetUpdaterData function and GeneratedUpdater class to finish c…

    …leaning RulerUpdater
    
    Utilize std::any to remove dependency of Ruler on functions to specifically set values for different updater types
    Additionally, create a GeneratedUpdater function to extract the Tick function in RulerUpdater to, for better scoping.
    micpap25 committed Aug 20, 2022
    Configuration menu
    Copy the full SHA
    9b1585b View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2022

  1. Change updaters from Structs to Classes

    Merge with last commit
    micpap25 committed Aug 21, 2022
    Configuration menu
    Copy the full SHA
    67701c2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    679b704 View commit details
    Browse the repository at this point in the history