Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Cooperative Cuisine Environment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Social Cognitive Systems
CoCoSy
Cooperative Cuisine Environment
Commits
f5c20ac2
Commit
f5c20ac2
authored
1 year ago
by
Fabian Heinrich
Browse files
Options
Downloads
Patches
Plain Diff
Fixed missing int conversion
parent
923815d8
No related branches found
No related tags found
1 merge request
!22
Resolve "Sprites for all game items and counters"
Pipeline
#43081
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
overcooked_simulator/gui_2d_vis/overcooked_gui.py
+3
-5
3 additions, 5 deletions
overcooked_simulator/gui_2d_vis/overcooked_gui.py
overcooked_simulator/gui_2d_vis/visualization.yaml
+2
-2
2 additions, 2 deletions
overcooked_simulator/gui_2d_vis/visualization.yaml
with
5 additions
and
7 deletions
overcooked_simulator/gui_2d_vis/overcooked_gui.py
+
3
−
5
View file @
f5c20ac2
...
@@ -118,10 +118,7 @@ class PyGameGUI:
...
@@ -118,10 +118,7 @@ class PyGameGUI:
self
.
window_height
=
self
.
visualization_config
[
"
GameWindow
"
][
"
start_height
"
]
self
.
window_height
=
self
.
visualization_config
[
"
GameWindow
"
][
"
start_height
"
]
self
.
main_window
=
pygame
.
display
.
set_mode
(
self
.
main_window
=
pygame
.
display
.
set_mode
(
(
(
self
.
window_width
,
self
.
window_height
)
self
.
window_width
,
self
.
window_height
,
)
)
)
self
.
game_width
,
self
.
game_height
=
0
,
0
self
.
game_width
,
self
.
game_height
=
0
,
0
...
@@ -141,6 +138,7 @@ class PyGameGUI:
...
@@ -141,6 +138,7 @@ class PyGameGUI:
)
)
game_height
=
int
(
game_width
*
kitchen_aspect_ratio
)
game_height
=
int
(
game_width
*
kitchen_aspect_ratio
)
grid_size
=
int
(
game_width
/
self
.
simulator
.
env
.
kitchen_width
)
grid_size
=
int
(
game_width
/
self
.
simulator
.
env
.
kitchen_width
)
elif
self
.
visualization_config
[
"
GameWindow
"
][
"
WhatIsFixed
"
]
==
"
grid
"
:
elif
self
.
visualization_config
[
"
GameWindow
"
][
"
WhatIsFixed
"
]
==
"
grid
"
:
grid_size
=
self
.
visualization_config
[
"
GameWindow
"
][
"
size
"
]
grid_size
=
self
.
visualization_config
[
"
GameWindow
"
][
"
size
"
]
game_width
,
game_height
=
(
game_width
,
game_height
=
(
...
@@ -156,7 +154,7 @@ class PyGameGUI:
...
@@ -156,7 +154,7 @@ class PyGameGUI:
game_height
+
(
2
*
self
.
screen_margin
),
game_height
+
(
2
*
self
.
screen_margin
),
)
)
return
window_width
,
window_height
,
game_width
,
game_height
,
grid_size
return
int
(
window_width
)
,
int
(
window_height
)
,
game_width
,
game_height
,
grid_size
def
create_player_colors
(
self
)
->
list
[
Color
]:
def
create_player_colors
(
self
)
->
list
[
Color
]:
number_player
=
len
(
self
.
simulator
.
env
.
players
)
number_player
=
len
(
self
.
simulator
.
env
.
players
)
...
...
This diff is collapsed.
Click to expand it.
overcooked_simulator/gui_2d_vis/visualization.yaml
+
2
−
2
View file @
f5c20ac2
# colors: https://www.webucator.com/article/python-color-constants-module/
# colors: https://www.webucator.com/article/python-color-constants-module/
GameWindow
:
GameWindow
:
WhatIsFixed
:
window_width
# entweder grid oder window_width
WhatIsFixed
:
grid
# entweder grid oder window_width
size
:
6
00
size
:
6
5
screen_margin
:
100
screen_margin
:
100
start_width
:
600
start_width
:
600
start_height
:
600
start_height
:
600
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment