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

Pacman demo #63

Merged
merged 168 commits into from
Oct 31, 2024
Merged

Pacman demo #63

merged 168 commits into from
Oct 31, 2024

Commits on Apr 12, 2024

  1. Draft pacman demo

    orzechow committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    6e6222e View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

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

Commits on May 14, 2024

  1. Update EnTT-Pacman submodule to clean 0a1ce67:

      > Split headers from source files for a clean install
    orzechow committed May 14, 2024
    Configuration menu
    Copy the full SHA
    f861fb5 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    8fe71d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2432031 View commit details
    Browse the repository at this point in the history
  3. Define main arbitrator class

    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    75a3703 View commit details
    Browse the repository at this point in the history
  4. WIP: Copy main routine from EnTT and pass dummy command

    This uses the submodule version of EnTT instead of the installed version
    as a workaround since the installed version gave me compile errors.
    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    453a297 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3a9d6f8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1a755b9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cb9078d View commit details
    Browse the repository at this point in the history
  8. Environment model now stores maze

    Update positions in separate function and move to cpp
    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    8e8d434 View commit details
    Browse the repository at this point in the history
  9. Implement first draft of runAwayFromGhostBehavior and corresponding u…

    …nit test
    
    Remove unnecessary class member
    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    0f59a3c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    16fff70 View commit details
    Browse the repository at this point in the history
  11. Call getCommand from main.cpp

    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    5ed8459 View commit details
    Browse the repository at this point in the history
  12. gitignore vscode files

    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    f2cd6c7 View commit details
    Browse the repository at this point in the history
  13. Implement doNothingBehavior

    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    17c7564 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    03a2616 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    fb290ac View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ac341ab View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    98bea39 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    a90ebd6 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    33d6efc View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    85a7ec2 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    0997172 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    aff5a16 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    5a0bd1e View commit details
    Browse the repository at this point in the history
  24. Add documentation

    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    99ad3b9 View commit details
    Browse the repository at this point in the history
  25. Refactor main.cpp to keep focus on the good stuff.

    Implement a wrapper class for the pacman game that handles all the SDL
    stuff, the game loop etc. This simplifies the main.cpp by quite a bit
    and allows to see whats actually important.
    ll-nick committed May 24, 2024
    Configuration menu
    Copy the full SHA
    8fac205 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Add PR review feedback

    Co-authored-by: Piotr Spieker <[email protected]>
    
    - Remove MRT leftovers
    - Remove unnecesseary doxygen string
    - Do not track isActive in runAwayFromGhostBehavior
    - Undo feedback commit: Position operator+ cannot return a reference
    - Rename PacmanArbitrator to PacmanAgent
    - Rename Direction::NONE to Direction::LAST
    - Consider the tunnel when computen the distance in A*
    - Replace global variable possibleMoves by static function
    - Fix tests where aStar was not properly initialized
    - Remove mounting of /dev/dri
    - Fix some includes
    ll-nick committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    aeb5776 View commit details
    Browse the repository at this point in the history
  2. Replace closestGhost{Distance,Position} by closestGhost and cache res…

    …ults
    
    - Function returns both the distance and the position to remove unecessary
    recompute
    - Cache closestGhost computation using util_caching
    ll-nick committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    9707235 View commit details
    Browse the repository at this point in the history
  3. Implement MazeAdapter

    - We only initialize once since the mazeState can be considered static for
      the distance caluclation. We pass a pointer to that state to the
      MazeAdapter which initializes and stores cells for the A* on the fly as required.
    - Fix const correctness of envModel construction/update.
    ll-nick committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    f1cfcad View commit details
    Browse the repository at this point in the history
  4. Cache computed A* distance

    Add NO_PATH_FOUND constant to communicate the result more clearly
    ll-nick committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    04ff357 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    203cff1 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #9 from KIT-MRT/entt_interface

    Implement EnTT Interface and add first behaviors
    ll-nick authored Jun 4, 2024
    Configuration menu
    Copy the full SHA
    cb8309f View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Configuration menu
    Copy the full SHA
    ad90ffb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4bf8db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    df3bdd6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ad52b47 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Configuration menu
    Copy the full SHA
    0309c99 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65b4bb9 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. <ESC> now also quits the game

    ll-nick committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    bb1d4cd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #15 from KIT-MRT/add_pause_by_keypress

    Add pause and quit key bindings
    ll-nick authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    0f6f455 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    99ae8dd View commit details
    Browse the repository at this point in the history
  4. Use std::clock in unit test

    Measuring process time instead of system time is the right thing to do
    here.
    ll-nick committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    a516ed7 View commit details
    Browse the repository at this point in the history
  5. Generalize tunnels using generically wrapped position

    As suggested by @orzechow we can account for the tunnel more generically
    and concisely using the modulus operator. Since the builtin % operator
    may return negative values, another modulus implementation was added.
    ll-nick committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    7137324 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #14 from KIT-MRT/add_maze_wrapper

    Add maze wrapper
    ll-nick authored Jun 17, 2024
    Configuration menu
    Copy the full SHA
    812eef1 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Configuration menu
    Copy the full SHA
    2b71c2b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcc910b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e8e3a3a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a5caef6 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Add entities struct

    This is meant to replace the position store and contains more data such
    as the ghost modes.
    ll-nick committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    6754661 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    755f324 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bd8b329 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e11162f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    135cb0b View commit details
    Browse the repository at this point in the history
  6. Return ghost (not just position) from distance calculations. Consider…

    … leftover scared time in chase ghost behavior.
    ll-nick committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    7128072 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bc65aff View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    28cb32a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f58d801 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f81066f View commit details
    Browse the repository at this point in the history
  4. Fix astar crash caused by virtual tunnel position

    This fix wraps an entities position before executing A*. If an entity is
    in the virtual position outside the maze inside the tunnel, the position
    is replaced by one side of the tunnel. This will cause an error in the
    distance calculation by 1 but is an easy fix for what would otherwise be
    an error.
    ll-nick committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    38bb0f8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    de20640 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #18 from KIT-MRT/fix_astar_virtual_position

    Fix astar virtual position
    ll-nick authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    9044207 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #16 from KIT-MRT/chase_ghost_behavior

    Chase ghost behavior
    ll-nick authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    ec998ec View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    baced16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    153608d View commit details
    Browse the repository at this point in the history
  3. Fix linter warnings

    ll-nick committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    15ac9ad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d4d2066 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    8ed4c95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    adff121 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e350212 View commit details
    Browse the repository at this point in the history
  4. Fix linter warnings

    Fix linter warnings
    ll-nick committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    04ba976 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c835f8f View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    ca588e2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #19 from KIT-MRT/random_walk_behavior

    Random walk behavior
    ll-nick authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    fd866db View commit details
    Browse the repository at this point in the history
  3. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5caaee8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #30 from KIT-MRT/add_path_interface

    Add path interface
    ll-nick authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    ffc1486 View commit details
    Browse the repository at this point in the history
  5. Rename files

    ll-nick committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    3592d22 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6f605fe View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7dd6d4c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e380d99 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0e2a8e2 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Merge pull request #32 from KIT-MRT/stay_in_place_behavior

    Replace DoNothing with StayInPlace. Closes #29
    ll-nick authored Aug 1, 2024
    Configuration menu
    Copy the full SHA
    9e540ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    268b2c8 View commit details
    Browse the repository at this point in the history
  3. Rename files

    ll-nick committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    2c5bb71 View commit details
    Browse the repository at this point in the history
  4. Fix unit test

    The const implicitely removed the default move assignment operator which
    broke the build of the unit tests.
    ll-nick committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    286b418 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #34 from KIT-MRT/rename_avoid_ghost_behavior

    Rename RunAwayFromGhost to AvoidGhost. Closes #31.
    ll-nick authored Aug 1, 2024
    Configuration menu
    Copy the full SHA
    5bfdb56 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    8c8c41f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67274d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    431ae46 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1e7d138 View commit details
    Browse the repository at this point in the history
  5. Continuously update maze

    Astar needs to know about current dot positions
    
    Also, remove unused leftover function.
    ll-nick committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    a8296cd View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    22de078 View commit details
    Browse the repository at this point in the history
  7. Add eatClosestDotBehavior

    ll-nick committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    e79f071 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2cdd067 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d649a28 View commit details
    Browse the repository at this point in the history
  10. Fix file name typo

    ll-nick committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    60d9e04 View commit details
    Browse the repository at this point in the history
  11. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    e7ec811 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e43d8a2 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #35 from KIT-MRT/eat_closest_dot_behavior

    Eat closest dot behavior
    Closes #25
    ll-nick authored Sep 24, 2024
    Configuration menu
    Copy the full SHA
    980303a View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. Configuration menu
    Copy the full SHA
    0cdc8fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1fb7348 View commit details
    Browse the repository at this point in the history
  3. Add ClusterFinder class

    ll-nick authored and orzechow committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    64e7719 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ea75033 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c0fd77d View commit details
    Browse the repository at this point in the history
  6. Use Positions alias

    ll-nick authored and orzechow committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    bf3ced5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    529685b View commit details
    Browse the repository at this point in the history
  8. Add clusterFinder to environment model

    ll-nick authored and orzechow committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    3e89d74 View commit details
    Browse the repository at this point in the history
  9. Power pellets can be part of a cluster

    ll-nick authored and orzechow committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    529558d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4876ea5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    46536c2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ce90279 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    52966c2 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    f199a48 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b91d969 View commit details
    Browse the repository at this point in the history
  16. Add documentation and tidy up

    Rename clusterFinder to dotClusterFinder
    ll-nick authored and orzechow committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    704d91b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    063ae1e View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    88d2e45 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5a6118b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0da94db View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c783b60 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #36 from KIT-MRT/change_dot_cluster_behavior

    Add change dot cluster behavior
    ll-nick authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    bcf1f2d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1409deb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f4c371b View commit details
    Browse the repository at this point in the history
  8. Add costEstimator

    ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    ec33e97 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9c5a3e6 View commit details
    Browse the repository at this point in the history
  10. Add simple unit test

    ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    b2a6f92 View commit details
    Browse the repository at this point in the history
  11. Add documentation

    ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    4e48b08 View commit details
    Browse the repository at this point in the history
  12. Remove unused includes

    orzechow authored and ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    6202876 View commit details
    Browse the repository at this point in the history
  13. Apply suggestions from code review

    Co-authored-by: Piotr Spieker <[email protected]>
    ll-nick and orzechow committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    f1642af View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8cc4678 View commit details
    Browse the repository at this point in the history
  15. The "absolute Path" no longer contains the current position

    The "relative Path" doesn't either so this should be more consistent.
    ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    e48d8ba View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    0081abd View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    dba62df View commit details
    Browse the repository at this point in the history
  18. Merge pull request #38 from KIT-MRT/cost_estimator

    Add cost estimator
    ll-nick authored Oct 7, 2024
    Configuration menu
    Copy the full SHA
    9bdfeb7 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    e739fb6 View commit details
    Browse the repository at this point in the history
  20. Add verifier

    ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    4a8801e View commit details
    Browse the repository at this point in the history
  21. Use verifier in arbitrators

    orzechow authored and ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    7a7a7e3 View commit details
    Browse the repository at this point in the history
  22. Make stayInPlace a fallback behavior

    orzechow authored and ll-nick committed Oct 7, 2024
    Configuration menu
    Copy the full SHA
    91e2741 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    d014631 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    cf1349e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    158389e View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Bug fix: Handle Direction::none

    Removing Direction::LAST caused a bug because ghost are initialized with
    the Direction::none.
    ll-nick committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    7e5180e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #40 from KIT-MRT/verifier

    Add verifier
    ll-nick authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    8210e8b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31099d8 View commit details
    Browse the repository at this point in the history
  4. Rename files

    ll-nick committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    bd18c91 View commit details
    Browse the repository at this point in the history
  5. Remove rebase artifact

    ll-nick committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    19ebf85 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #55 from KIT-MRT/raname_move_randomly_behavior

    Raname move randomly behavior to move randomly behavior
    ll-nick authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    7eb3499 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    125cf70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b6b193c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dbd9a79 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c652ea8 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. Configuration menu
    Copy the full SHA
    e4e7c79 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #56 from KIT-MRT/render_path

    Optionally render planned path
    ll-nick authored Oct 29, 2024
    Configuration menu
    Copy the full SHA
    c75f358 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    82b3f11 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bdd22a4 View commit details
    Browse the repository at this point in the history
  5. Build demo with more threads

    orzechow committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    ffdc8f6 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Configuration menu
    Copy the full SHA
    68c648d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #64 from KIT-MRT/improve_docker

    Improve docker images (versioning, cleanup)
    orzechow authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    233d800 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    882d5b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    92c7157 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4d333c0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3c0352d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c16ef52 View commit details
    Browse the repository at this point in the history
  8. Update README.md

    Co-authored-by: ll-nick <[email protected]>
    orzechow and ll-nick authored Oct 30, 2024
    Configuration menu
    Copy the full SHA
    f4244a8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a45bea0 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Configuration menu
    Copy the full SHA
    e947286 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    729b1fe View commit details
    Browse the repository at this point in the history