Commits on Source (83)
-
Fabian Heinrich authored
Counters get an assigned orientation. They are oriented towards the next free tile, if more exist then the one is selected which looks to the kitchen center the most.
-
Florian Schröder authored
The OrderConfig and EnvironmentConfig classes were added to the utils.py file in the Overcooked simulator. These classes help define the structure and type of orders and environments used in the simulation, contributing to the manageability and modularity of the codebase.
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/game_content/layouts/basic.layout # overcooked_simulator/gui_2d_vis/overcooked_gui.py # overcooked_simulator/overcooked_environment.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
Improved how the orientation of counters is determined in the overcooked_environment; counters will now orient themselves in the correct direction based on their neighbors. Additionally, all dispensers have been commented out in the GUI 2D visualization configuration for cleaning up the visuals. These changes improve both the functionality and visual aspect of the simulator.
-
Fabian Heinrich authored
Multiple Players can be controlled with a single set of keys by switching through. Behavior of switching can be controlled in start menu.
-
Florian Schröder authored
The updates include adding docstrings and type hinting to several classes and methods in multiple Python files. This commit also includes fixes for inconsistent code formatting and minor bugs. The docstrings provide essential details about the classes and methods, improving readability and understanding for other developers. Furthermore, the added type hinting will enable better IDE assistance, static analysis, and clarity on expected input and output types. Lastly, the code formatting fixes and bug fixes enhance the overall code quality and maintainability.
-
Florian Schröder authored
The code changes include renaming the 'category' field from "Cooking Equipment" to "ItemCookingEquipment" in sample_state.json. The documentation has also been updated with more detailed explanations on how the system works, including how to install and use it. A few function signatures were changed and additional explanation comments were included in the counters.py and utils.py files for better code clarity.
-
Florian Schröder authored
Documentation has been updated to provide better clarity on the layout and equipment configuration. The README file now includes information on defining counter mappings in the Environment config. The code examples in comments within the counters.py file have also been reformatted and updated, specifically those related to defining equipment types and dispenser characters. The additional change includes an expanded section in the __init__.py file on environment and item configuration.
-
Florian Schröder authored
The changes include improving the wording in readme files, from 'Python 3.10 or higher' to 'Python 3
-
Florian Schröder authored
This commit improves the readability of project documentation in `overcooked_simulator/__init__.py` file. Specifically, it separates the text about direct integration into separate lines for clarity and tidies up the example YAML configuration, consistently indenting the different sections of the content.
-
Florian Schröder authored
The changes made are focused on improving the readability of code comments and clarifying the purpose of sections within the 'overcooked_simulator'. Formatting changes were made to separate headers for better readability and the meaning of certain terms, like 'extra_repr' in 'game_items.py', was clarified further.
-
Florian Schröder authored
- /README.md - /overcooked_simulator/__init__.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
This commit introduces agent configuration files for the Overcooked game simulator and enhances error handling in the game server. Notably, it includes safeguards to prevent errors when player data or environment IDs do not exist. Also, it modifies the game GUI to handle player keys and websockets according to the number of humans and bots in the game.
-
fheinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
# Conflicts: # overcooked_simulator/utils.py
-
Florian Schröder authored
The EnvironmentConfig and OrderConfig classes, previously defined in the utils.py file, were moved to their respective modules overcooked_environment.py and order.py. This change creates a central location for configuration and reduces unnecessary dependencies in the utils.py file.
-
Florian Schröder authored
Resolve "Type hint class for environment config" Closes #75 See merge request scs/cocosy/overcooked-simulator!37
-
fheinrich authored
-
Florian Schröder authored
Added a Hooks class to monitor events related to player actions, item interactions, and state changes in the game environment. A hook triggers a corresponding event when a specific action takes place, such as a player picking up an item or a game state changing. This feature will make debugging easier and provide valuable insights during gameplay.
-
Florian Schröder authored
This commit introduces specific event hooks for key game moments within the overcooked simulator. These include events like serving a non-ordered meal, starting to use the sink, completing an order, and using the trashcan. Callbacks were registered for these hooks to provide real-time feedback such as messages. Also, a typo in POST_PERFORM_ACTION parameter was corrected.
-
Florian Schröder authored
The refactoring moves the redundant callback registrations from `overcooked_environment.py` to a dedicated function, `add_dummy_callbacks`, in `hooks.py`. This restructure streamlines the code and improves readability by reducing clutter in the Overcooked Environment initialization method.
-
Florian Schröder authored
The dummy callbacks previously used for testing in the file 'overcooked_environment.py' have been removed. This has been done to avoid redundancy and ensure cleaner code. The comments referencing these callbacks have been updated accordingly.
-
Florian Schröder authored
Resolve "Hooks" Closes #78 See merge request scs/cocosy/overcooked-simulator!46
-
Florian Schröder authored
The code for calculating the progress bar's position within the grid in gui_2d_vis/drawing.py has been clarified. Instead of directly manipulating the `pos` variable, a new `bar_pos` variable has been introduced. This revision enhances readability and maintains the integrity of the `pos` value.
-
Florian Schröder authored
A `waste_progress` attribute has been added to track the progress of burnt items. Changes also include the visualization of burnt items in greyscale and additional definitions for various types of burnt meals in Overcooked Simulator. This update enhances both the gameplay and its realism, indicating when an item is overcooked or burnt.
-
Florian Schröder authored
The random module is replaced with random instance across multiple classes within 'overcooked_simulator' to make the randomness in the Overcooked simulator controllable. The 'random' instance is initialised with a seed in 'overcooked_environment' and then passed to the classes that require randomness. This improves reproducibility of experiments, as the randomness can be controlled by the seed value.
-
Florian Schröder authored
Added the definition and interactions for game effects and tools. The effect type was introduced to influence the player's interactive abilities or alter item's attributes. The tool type extends the player's interactive abilities. It also includes the part related to fire and fire extinguisher for more realistic simulation.
-
Florian Schröder authored
The append call to the progressing_counters list in tests/test_start.py has been removed. This was deemed unnecessary because there was no subsequent use or reference to this call in the entire codebase, improving the code cleanliness and readability.
-
Florian Schröder authored
This update introduces comprehensive hook management, improved environment setup functions, and a new class for logging and recording simulations. The enhanced hook management ensures better callback registration and tracing of specific simulation events. Extra setup functions allow more flexibility in setting parameters from the environment config. The new logging and recording class makes it easier to capture simulation data in a structured format for analysis. Various minor fixes and code refactoring are also included.
-
Florian Schröder authored
The code was modified to include support for 'ROOT_DIR' as a prefix in log paths. This allows logs to be stored in a location relative to the project's root directory dynamically. The change enhances log path flexibility in the overcooked simulator.
-
Florian Schröder authored
The log path naming in the Overcooked simulator has been updated from a static format to a dynamic one. This change enables individual log naming for each type of event previously considered as 'actions', 'random_env_events', and 'env_configs'. The inclusion of a specific log_record_name in the path helps improve log management and tracking.
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
The principal updates in this commit focus on modifying the player movement mechanism and refining collision detection logic in the Overcooked game simulation. The changes were made both in the game layout and the player's relation to the environment, by adjusting the player position coordinates and enhancing the collision parameters. Debugging prints were added for better tracking.
-
Florian Schröder authored
This update refines the collision detection mechanism in the 'overcooked_environment' module. The changes ensure that players can't move into positions where they would collide with other elements. Player control handling in the 'overcooked_gui' module is also tweaked to provide smoother switching between players. Remaining modifications in 'arch_config.yml' deactivate the GUI in status manager and change the preference for IPAACARInfo under communication.
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/counters.py # overcooked_simulator/gui_2d_vis/drawing.py # overcooked_simulator/gui_2d_vis/visualization.yaml # overcooked_simulator/overcooked_environment.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/counters.py # overcooked_simulator/gui_2d_vis/drawing.py
-
Fabian Heinrich authored
Resolve "Determine Counter Facing Direction" Closes #68 See merge request scs/cocosy/overcooked-simulator!33
-
Florian Schröder authored
This commit introduces a random agent in the game simulation. A significant portion of code has been added to manage the actions and decisions of this random agent within the environment. Player collision with moving players has been commented out, possibly indicating a test where player interactions do not lead to the halting of movement. A large layout has also been added to the simulation. In the visualization component, the process for launching agents has been adjusted to accommodate the random agent.
-
Florian Schröder authored
-
Florian Schröder authored
The `random_agent.py` has been refactored to use asyncio. This modification allows for more efficient handling of asynchronous operations. Additionally, a fix has been implemented to correctly identify and handle the "current nearest counter ID", making sure that the agent continues performing its tasks in a correct manner.
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
Resolve "Fire Fire Everywhere
" See merge request scs/cocosy/overcooked-simulator!49 -
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/gui_2d_vis/drawing.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
The Overcooked environment module has been refactored to better handle player movements. The previously existing detect_collision function and its helper functions have been removed as they were no longer needed. Similarly, all the player speed values have been updated to reference a singular player_movement_speed attribute. The changes aimed to improve code readability, enforce unified player speeds, and remove redundant collision detection.
-
Fabian Heinrich authored
Resolve "Burnt Meals and Ingredients" Closes #82 See merge request scs/cocosy/overcooked-simulator!47
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/overcooked_environment.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
Fixed: Burn no longer continues after taking things out of equipment, can take things out of cooking equipment again
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Florian Schröder authored
Resolve "Use Random class for random seed and random sampling" Closes #69 See merge request scs/cocosy/overcooked-simulator!48
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/game_content/environment_config.yaml # overcooked_simulator/game_server.py # overcooked_simulator/order.py # overcooked_simulator/overcooked_environment.py # overcooked_simulator/utils.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
Resolve "Record relevant env events in a file" Closes #72 See merge request scs/cocosy/overcooked-simulator!43
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
-
Fabian Heinrich authored
# Conflicts: # overcooked_simulator/gui_2d_vis/drawing.py # overcooked_simulator/gui_2d_vis/overcooked_gui.py # overcooked_simulator/overcooked_environment.py # overcooked_simulator/utils.py # tests/test_start.py
-
Fabian Heinrich authored
-
Fabian Heinrich authored
Resolve "GUI Player Management" Closes #81 See merge request scs/cocosy/overcooked-simulator!44
-
Florian Schröder authored
This commit modifies a key behavior in the Overcooked simulator. The flag to prevent players from squeezing into each other's positions was set to false, allowing such movements. This might affect gameplay mechanics in situations where players concurrently enter the same location.
Showing
- README.md 3 additions, 2 deletionsREADME.md
- overcooked_simulator/__init__.py 277 additions, 11 deletionsovercooked_simulator/__init__.py
- overcooked_simulator/__main__.py 1 addition, 1 deletionovercooked_simulator/__main__.py
- overcooked_simulator/counter_factory.py 141 additions, 34 deletionsovercooked_simulator/counter_factory.py
- overcooked_simulator/counters.py 259 additions, 119 deletionsovercooked_simulator/counters.py
- overcooked_simulator/effect_manager.py 134 additions, 0 deletionsovercooked_simulator/effect_manager.py
- overcooked_simulator/game_content/agents/arch_config.yml 24 additions, 0 deletionsovercooked_simulator/game_content/agents/arch_config.yml
- overcooked_simulator/game_content/agents/random_agent.py 221 additions, 0 deletionsovercooked_simulator/game_content/agents/random_agent.py
- overcooked_simulator/game_content/agents/run_config.yml 15 additions, 0 deletionsovercooked_simulator/game_content/agents/run_config.yml
- overcooked_simulator/game_content/environment_config.yaml 45 additions, 1 deletionovercooked_simulator/game_content/environment_config.yaml
- overcooked_simulator/game_content/item_info.yaml 54 additions, 0 deletionsovercooked_simulator/game_content/item_info.yaml
- overcooked_simulator/game_content/item_info_debug.yaml 54 additions, 0 deletionsovercooked_simulator/game_content/item_info_debug.yaml
- overcooked_simulator/game_content/layouts/basic.layout 1 addition, 1 deletionovercooked_simulator/game_content/layouts/basic.layout
- overcooked_simulator/game_content/layouts/empty.layout 8 additions, 7 deletionsovercooked_simulator/game_content/layouts/empty.layout
- overcooked_simulator/game_content/layouts/large.layout 23 additions, 0 deletionsovercooked_simulator/game_content/layouts/large.layout
- overcooked_simulator/game_content/layouts/rot_test.layout 5 additions, 0 deletionsovercooked_simulator/game_content/layouts/rot_test.layout
- overcooked_simulator/game_items.py 140 additions, 31 deletionsovercooked_simulator/game_items.py
- overcooked_simulator/game_server.py 27 additions, 7 deletionsovercooked_simulator/game_server.py
- overcooked_simulator/gui_2d_vis/drawing.py 320 additions, 50 deletionsovercooked_simulator/gui_2d_vis/drawing.py
- overcooked_simulator/gui_2d_vis/gui_theme.json 66 additions, 1 deletionovercooked_simulator/gui_2d_vis/gui_theme.json
This diff is collapsed.
overcooked_simulator/effect_manager.py
0 → 100644
This diff is collapsed.