diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-08 14:59:48 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-08 14:59:48 +0200 |
commit | b5bd610022dbd4348467af6c1be2135c1dc48f99 (patch) | |
tree | 448338a29c6ae7e97653744811f480a350551f75 /client | |
parent | e5f913706a2c87993bbaf793e9640cfd154db421 (diff) | |
download | hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.bz2 hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.zst |
[skip-notice] Update license notice everywhere.
Diffstat (limited to 'client')
119 files changed, 614 insertions, 422 deletions
diff --git a/client/audio/play_random.gd b/client/audio/play_random.gd index df77de2f..683d95ba 100644 --- a/client/audio/play_random.gd +++ b/client/audio/play_random.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart +# Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/audio/sound.gd b/client/audio/sound.gd index f0100756..ac30acf8 100644 --- a/client/audio/sound.gd +++ b/client/audio/sound.gd @@ -1,3 +1,20 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 nokoe +# Copyright 2024 tpart +# Copyright 2024 metamuffin +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# extends Node @onready var click_sound = $UI/Click diff --git a/client/disable_wrong_joypads.gd b/client/disable_wrong_joypads.gd index 024281c0..18cd9ce5 100644 --- a/client/disable_wrong_joypads.gd +++ b/client/disable_wrong_joypads.gd @@ -1,5 +1,18 @@ -# Adapted from https://gist.github.com/geekley/5e6daf62d2e86b566c4886f20b604d21 -# which is unlicense lincensed +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# extends Node func _ready() -> void: diff --git a/client/game.gd b/client/game.gd index b2bb67ae..e760186b 100644 --- a/client/game.gd +++ b/client/game.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # Copyright 2024 metamuffin # Copyright 2024 tpart diff --git a/client/global.gd b/client/global.gd index 3e46b1dc..a9df1329 100644 --- a/client/global.gd +++ b/client/global.gd @@ -1,6 +1,6 @@ -# Undercooked - a game about cooking -# Copyright 2024 metamuffin +# Hurry Curry! - a game about cooking # Copyright 2024 tpart +# Copyright 2024 metamuffin # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/auto_setup/environment_setup.gd b/client/map/auto_setup/environment_setup.gd index f163588b..323a7f04 100644 --- a/client/map/auto_setup/environment_setup.gd +++ b/client/map/auto_setup/environment_setup.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/auto_setup/light_setup.gd b/client/map/auto_setup/light_setup.gd index c74fb5ee..7fb50c14 100644 --- a/client/map/auto_setup/light_setup.gd +++ b/client/map/auto_setup/light_setup.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd index d3da32ef..833e61af 100644 --- a/client/map/item_factory.gd +++ b/client/map/item_factory.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name ItemFactory extends Object diff --git a/client/map/items/bread.gd b/client/map/items/bread.gd index db277a72..b049b450 100644 --- a/client/map/items/bread.gd +++ b/client/map/items/bread.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Bread extends Item diff --git a/client/map/items/bread_slice.gd b/client/map/items/bread_slice.gd index 0449689a..f74b0058 100644 --- a/client/map/items/bread_slice.gd +++ b/client/map/items/bread_slice.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BreadSlice extends Item diff --git a/client/map/items/bread_slice_plate.gd b/client/map/items/bread_slice_plate.gd index 54a393bc..f222b7c2 100644 --- a/client/map/items/bread_slice_plate.gd +++ b/client/map/items/bread_slice_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BreadSlicePlate extends Plate diff --git a/client/map/items/bread_slice_sliced_tomato_plate.gd b/client/map/items/bread_slice_sliced_tomato_plate.gd index 63e74c21..4dc59897 100644 --- a/client/map/items/bread_slice_sliced_tomato_plate.gd +++ b/client/map/items/bread_slice_sliced_tomato_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BreadSliceSlicedTomatoPlate extends BreadSlicePlate diff --git a/client/map/items/bread_slice_sliced_tomato_steak_plate.gd b/client/map/items/bread_slice_sliced_tomato_steak_plate.gd index 157c02e9..963c2892 100644 --- a/client/map/items/bread_slice_sliced_tomato_steak_plate.gd +++ b/client/map/items/bread_slice_sliced_tomato_steak_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BreadSliceSlicedTomatoSteakPlate extends BreadSliceSteakPlate diff --git a/client/map/items/bread_slice_steak_plate.gd b/client/map/items/bread_slice_steak_plate.gd index 902cdf44..d6bca18f 100644 --- a/client/map/items/bread_slice_steak_plate.gd +++ b/client/map/items/bread_slice_steak_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BreadSliceSteakPlate extends BreadSlicePlate diff --git a/client/map/items/burned.gd b/client/map/items/burned.gd index ad7b4505..138d6c93 100644 --- a/client/map/items/burned.gd +++ b/client/map/items/burned.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Burned extends Item diff --git a/client/map/items/burned_pot.gd b/client/map/items/burned_pot.gd index d38cae6e..8a77d08d 100644 --- a/client/map/items/burned_pot.gd +++ b/client/map/items/burned_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name BurnedPot extends PotFill diff --git a/client/map/items/dirty_plate.gd b/client/map/items/dirty_plate.gd index ace34452..859d6b35 100644 --- a/client/map/items/dirty_plate.gd +++ b/client/map/items/dirty_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name DirtyPlate extends Plate diff --git a/client/map/items/dough.gd b/client/map/items/dough.gd index adcfa5d5..108016ee 100644 --- a/client/map/items/dough.gd +++ b/client/map/items/dough.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Dough extends Item diff --git a/client/map/items/dough_food_processor.gd b/client/map/items/dough_food_processor.gd index 2d9cd8b7..bb8629e4 100644 --- a/client/map/items/dough_food_processor.gd +++ b/client/map/items/dough_food_processor.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name DoughFoodProcessor extends FoodProcessorContent diff --git a/client/map/items/flour.gd b/client/map/items/flour.gd index 1cb52ee8..95357414 100644 --- a/client/map/items/flour.gd +++ b/client/map/items/flour.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Flour extends Item diff --git a/client/map/items/flour_food_processor.gd b/client/map/items/flour_food_processor.gd index 24ad976c..dadd4b65 100644 --- a/client/map/items/flour_food_processor.gd +++ b/client/map/items/flour_food_processor.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name FlourFoodProcessor extends FoodProcessor diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 6a04da00..66d78168 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name FoodProcessor extends Item diff --git a/client/map/items/food_processor_content.gd b/client/map/items/food_processor_content.gd index ee8edc1c..a8ba1079 100644 --- a/client/map/items/food_processor_content.gd +++ b/client/map/items/food_processor_content.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name FoodProcessorContent extends FoodProcessor diff --git a/client/map/items/generic_item.gd b/client/map/items/generic_item.gd index d1cbc41a..9c3d3931 100644 --- a/client/map/items/generic_item.gd +++ b/client/map/items/generic_item.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name GenericItem extends Item diff --git a/client/map/items/item.gd b/client/map/items/item.gd index 6433d5db..b657e14f 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -1,18 +1,20 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 tpart +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Item extends Node3D diff --git a/client/map/items/leek-pot.gd b/client/map/items/leek-pot.gd index 3b16d3cf..3e5b7def 100644 --- a/client/map/items/leek-pot.gd +++ b/client/map/items/leek-pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name LeekPot extends Pot diff --git a/client/map/items/leek.gd b/client/map/items/leek.gd index fd74bd68..8503dd41 100644 --- a/client/map/items/leek.gd +++ b/client/map/items/leek.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Leek extends Item diff --git a/client/map/items/leek_tomato_juice_pot.gd b/client/map/items/leek_tomato_juice_pot.gd index fc6cb465..26a614b5 100644 --- a/client/map/items/leek_tomato_juice_pot.gd +++ b/client/map/items/leek_tomato_juice_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name LeekTomatoJuicePot extends TomatoJuicePot diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd index 73ffc5d9..61e097b8 100644 --- a/client/map/items/plate.gd +++ b/client/map/items/plate.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 tpart +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Plate extends Item diff --git a/client/map/items/plate_fill.gd b/client/map/items/plate_fill.gd index ead71f11..be5a320c 100644 --- a/client/map/items/plate_fill.gd +++ b/client/map/items/plate_fill.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name PlateFill extends Plate diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index e802b7e9..4fb065cd 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Pot extends Item diff --git a/client/map/items/pot_fill.gd b/client/map/items/pot_fill.gd index bd262c63..f5c8ad44 100644 --- a/client/map/items/pot_fill.gd +++ b/client/map/items/pot_fill.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name PotFill extends Pot diff --git a/client/map/items/raw_steak.gd b/client/map/items/raw_steak.gd index 328e4e92..bd4cf1c4 100644 --- a/client/map/items/raw_steak.gd +++ b/client/map/items/raw_steak.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name RawSteak extends Item diff --git a/client/map/items/raw_steak_pot.gd b/client/map/items/raw_steak_pot.gd index 437ba5de..6c3d4717 100644 --- a/client/map/items/raw_steak_pot.gd +++ b/client/map/items/raw_steak_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name RawSteakPot extends Pot diff --git a/client/map/items/sliced_tomato.gd b/client/map/items/sliced_tomato.gd index af5e53e2..5b076335 100644 --- a/client/map/items/sliced_tomato.gd +++ b/client/map/items/sliced_tomato.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SlicedTomato extends Item diff --git a/client/map/items/sliced_tomato_plate.gd b/client/map/items/sliced_tomato_plate.gd index e8ea2d7b..061a4d1f 100644 --- a/client/map/items/sliced_tomato_plate.gd +++ b/client/map/items/sliced_tomato_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SlicedTomatoPlate extends Plate diff --git a/client/map/items/sliced_tomato_steak_plate.gd b/client/map/items/sliced_tomato_steak_plate.gd index 8dbb9c71..3d8070f0 100644 --- a/client/map/items/sliced_tomato_steak_plate.gd +++ b/client/map/items/sliced_tomato_steak_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SlicedTomatoSteakPlate extends SteakPlate diff --git a/client/map/items/steak_plate.gd b/client/map/items/steak_plate.gd index 454400ee..6ff91420 100644 --- a/client/map/items/steak_plate.gd +++ b/client/map/items/steak_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SteakPlate extends Plate diff --git a/client/map/items/steak_pot.gd b/client/map/items/steak_pot.gd index fd755e62..32dbea5c 100644 --- a/client/map/items/steak_pot.gd +++ b/client/map/items/steak_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SteakPot extends Pot diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd index 43e2e64d..97cd668c 100644 --- a/client/map/items/tomato.gd +++ b/client/map/items/tomato.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Tomato extends Item diff --git a/client/map/items/tomato_food_processor.gd b/client/map/items/tomato_food_processor.gd index 4003e246..296a996c 100644 --- a/client/map/items/tomato_food_processor.gd +++ b/client/map/items/tomato_food_processor.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoFoodProcessor extends FoodProcessor diff --git a/client/map/items/tomato_juice_food_processor.gd b/client/map/items/tomato_juice_food_processor.gd index d1fe9c7c..d6767786 100644 --- a/client/map/items/tomato_juice_food_processor.gd +++ b/client/map/items/tomato_juice_food_processor.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoJuiceFoodProcessor extends FoodProcessorContent diff --git a/client/map/items/tomato_juice_pot.gd b/client/map/items/tomato_juice_pot.gd index a27eeb1a..7219b51a 100644 --- a/client/map/items/tomato_juice_pot.gd +++ b/client/map/items/tomato_juice_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoJuicePot extends PotFill diff --git a/client/map/items/tomato_soup_plate.gd b/client/map/items/tomato_soup_plate.gd index 91b396c4..c5ec9312 100644 --- a/client/map/items/tomato_soup_plate.gd +++ b/client/map/items/tomato_soup_plate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoSoupPlate extends PlateFill diff --git a/client/map/items/tomato_soup_pot.gd b/client/map/items/tomato_soup_pot.gd index 1194fae3..c77c5dc3 100644 --- a/client/map/items/tomato_soup_pot.gd +++ b/client/map/items/tomato_soup_pot.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoSoupPot extends PotFill diff --git a/client/map/map.gd b/client/map/map.gd index 4c7136c7..e0fc091e 100644 --- a/client/map/map.gd +++ b/client/map/map.gd @@ -1,3 +1,20 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 nokoe +# Copyright 2024 metamuffin +# Copyright 2024 tpart +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Map extends Node3D diff --git a/client/map/progress.gd b/client/map/progress.gd index dd855a36..52415b95 100644 --- a/client/map/progress.gd +++ b/client/map/progress.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name ProgressBar3D extends MeshInstance3D diff --git a/client/map/progress.gdshader b/client/map/progress.gdshader index 9567bcac..2ce33dd6 100644 --- a/client/map/progress.gdshader +++ b/client/map/progress.gdshader @@ -1,20 +1,20 @@ /* - Undercooked - a game about cooking - Copyright 2024 nokoe + Hurry Curry! - a game about cooking + Copyright 2024 metamuffin Copyright 2024 tpart - + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License only. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. - + */ shader_type spatial; render_mode unshaded; diff --git a/client/map/tile_factory.gd b/client/map/tile_factory.gd index c950cd1f..a5e7bf05 100644 --- a/client/map/tile_factory.gd +++ b/client/map/tile_factory.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TileFactory extends Object diff --git a/client/map/tiles/chair.gd b/client/map/tiles/chair.gd index b7014028..bf2fce16 100644 --- a/client/map/tiles/chair.gd +++ b/client/map/tiles/chair.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Chair extends Floor diff --git a/client/map/tiles/counter.gd b/client/map/tiles/counter.gd index d511e90d..45be5525 100644 --- a/client/map/tiles/counter.gd +++ b/client/map/tiles/counter.gd @@ -1,4 +1,5 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/tiles/counter_base.gd b/client/map/tiles/counter_base.gd index 13c78799..0235268e 100644 --- a/client/map/tiles/counter_base.gd +++ b/client/map/tiles/counter_base.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name CounterBase extends Counter diff --git a/client/map/tiles/counter_window.gd b/client/map/tiles/counter_window.gd index 233be1fc..5646b112 100644 --- a/client/map/tiles/counter_window.gd +++ b/client/map/tiles/counter_window.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name CounterWindow extends WallTile diff --git a/client/map/tiles/crate.gd b/client/map/tiles/crate.gd index 21fae60b..63ceed75 100644 --- a/client/map/tiles/crate.gd +++ b/client/map/tiles/crate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking -# Copyright 2024 nokoe -# +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Crate extends Counter diff --git a/client/map/tiles/cutting_board.gd b/client/map/tiles/cutting_board.gd index 280235e8..66968313 100644 --- a/client/map/tiles/cutting_board.gd +++ b/client/map/tiles/cutting_board.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name CuttingBoard extends CounterBase diff --git a/client/map/tiles/door.gd b/client/map/tiles/door.gd index ab778158..28506852 100644 --- a/client/map/tiles/door.gd +++ b/client/map/tiles/door.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Door extends WallTile diff --git a/client/map/tiles/exterior_tree.gd b/client/map/tiles/exterior_tree.gd index d1e0b6b3..41e35693 100644 --- a/client/map/tiles/exterior_tree.gd +++ b/client/map/tiles/exterior_tree.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name ExteriorTree extends Grass diff --git a/client/map/tiles/fence.gd b/client/map/tiles/fence.gd index 61383959..f74a992f 100644 --- a/client/map/tiles/fence.gd +++ b/client/map/tiles/fence.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/tiles/floor.gd b/client/map/tiles/floor.gd index 37e13686..a8b9e8f7 100644 --- a/client/map/tiles/floor.gd +++ b/client/map/tiles/floor.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Floor extends Tile diff --git a/client/map/tiles/flour_counter.gd b/client/map/tiles/flour_counter.gd index a767f2a9..fa8a1bbc 100644 --- a/client/map/tiles/flour_counter.gd +++ b/client/map/tiles/flour_counter.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name FlourCounter extends CounterBase diff --git a/client/map/tiles/full_tile.gd b/client/map/tiles/full_tile.gd index 3155913e..f83ba2b5 100644 --- a/client/map/tiles/full_tile.gd +++ b/client/map/tiles/full_tile.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name FullTile extends Floor diff --git a/client/map/tiles/generic_tile.gd b/client/map/tiles/generic_tile.gd index 48e82dee..5cbc7820 100644 --- a/client/map/tiles/generic_tile.gd +++ b/client/map/tiles/generic_tile.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name GenericTile extends Floor diff --git a/client/map/tiles/grass.gd b/client/map/tiles/grass.gd index 1c0dd844..b33642a3 100644 --- a/client/map/tiles/grass.gd +++ b/client/map/tiles/grass.gd @@ -1,6 +1,5 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/map/tiles/leek_crate.gd b/client/map/tiles/leek_crate.gd index f2a76416..a025516b 100644 --- a/client/map/tiles/leek_crate.gd +++ b/client/map/tiles/leek_crate.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name LeekCrate extends Crate diff --git a/client/map/tiles/oven.gd b/client/map/tiles/oven.gd index 41a3fe39..c0cf7196 100644 --- a/client/map/tiles/oven.gd +++ b/client/map/tiles/oven.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Oven extends Counter diff --git a/client/map/tiles/oven_model.gd b/client/map/tiles/oven_model.gd index eaaab1b1..6bcd69c5 100644 --- a/client/map/tiles/oven_model.gd +++ b/client/map/tiles/oven_model.gd @@ -1,17 +1,18 @@ +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name OvenModel extends Node3D diff --git a/client/map/tiles/path.gd b/client/map/tiles/path.gd index 02240632..65b7e62c 100644 --- a/client/map/tiles/path.gd +++ b/client/map/tiles/path.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/map/tiles/raw_steak_crate.gd b/client/map/tiles/raw_steak_crate.gd index b7057cc3..07a2acdf 100644 --- a/client/map/tiles/raw_steak_crate.gd +++ b/client/map/tiles/raw_steak_crate.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name RawSteakCrate extends Crate diff --git a/client/map/tiles/sink.gd b/client/map/tiles/sink.gd index a7599b8e..adf1a971 100644 --- a/client/map/tiles/sink.gd +++ b/client/map/tiles/sink.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Sink extends Counter diff --git a/client/map/tiles/sink_bubbles.gd b/client/map/tiles/sink_bubbles.gd index 2dbafca8..7afa7f5b 100644 --- a/client/map/tiles/sink_bubbles.gd +++ b/client/map/tiles/sink_bubbles.gd @@ -1,3 +1,18 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name SinkBubbles extends Node3D diff --git a/client/map/tiles/stove.gd b/client/map/tiles/stove.gd index e17ced36..65bc9502 100644 --- a/client/map/tiles/stove.gd +++ b/client/map/tiles/stove.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Stove extends Counter diff --git a/client/map/tiles/table.gd b/client/map/tiles/table.gd index bf766f0b..6d1b1862 100644 --- a/client/map/tiles/table.gd +++ b/client/map/tiles/table.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Table extends FullTile diff --git a/client/map/tiles/tile.gd b/client/map/tiles/tile.gd index 38e425f0..70cecfd8 100644 --- a/client/map/tiles/tile.gd +++ b/client/map/tiles/tile.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Tile extends Node3D diff --git a/client/map/tiles/tomato_crate.gd b/client/map/tiles/tomato_crate.gd index 9d5cfbe9..bcfc67d5 100644 --- a/client/map/tiles/tomato_crate.gd +++ b/client/map/tiles/tomato_crate.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name TomatoCrate extends Crate diff --git a/client/map/tiles/trash.gd b/client/map/tiles/trash.gd index 99947742..a8ba3e6d 100644 --- a/client/map/tiles/trash.gd +++ b/client/map/tiles/trash.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Trash extends Crate diff --git a/client/map/tiles/wall.gd b/client/map/tiles/wall.gd index 8be8df20..0a00752d 100644 --- a/client/map/tiles/wall.gd +++ b/client/map/tiles/wall.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Wall extends WallTile diff --git a/client/map/tiles/wall_tile.gd b/client/map/tiles/wall_tile.gd index ae3ac9e1..d0d9a422 100644 --- a/client/map/tiles/wall_tile.gd +++ b/client/map/tiles/wall_tile.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name WallTile extends FullTile diff --git a/client/map/tiles/window.gd b/client/map/tiles/window.gd index b3e7c478..7c46fa56 100644 --- a/client/map/tiles/window.gd +++ b/client/map/tiles/window.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name WallWindow extends WallTile diff --git a/client/menu/blur_mix.gdshader b/client/menu/blur_mix.gdshader index 884ce795..668ef57d 100644 --- a/client/menu/blur_mix.gdshader +++ b/client/menu/blur_mix.gdshader @@ -1,3 +1,20 @@ +/* + Hurry Curry! - a game about cooking + Copyright 2024 tpart + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, version 3 of the License only. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + +*/ shader_type canvas_item; uniform float blur_amount : hint_range(-2.0, 10.0); diff --git a/client/menu/book/book.gd b/client/menu/book/book.gd index 2a007a3b..5c5723c9 100644 --- a/client/menu/book/book.gd +++ b/client/menu/book/book.gd @@ -1,3 +1,18 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# extends Menu func _ready(): diff --git a/client/menu/character.gd b/client/menu/character.gd index b6999acd..b4427e13 100644 --- a/client/menu/character.gd +++ b/client/menu/character.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# extends Menu @onready var character: Character = $Node3D/Character diff --git a/client/menu/controller_buttons/controller_button.gd b/client/menu/controller_buttons/controller_button.gd index 83cfc180..fbde9b16 100644 --- a/client/menu/controller_buttons/controller_button.gd +++ b/client/menu/controller_buttons/controller_button.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/credits.gd b/client/menu/credits.gd index 7c2f86ec..059c1ba3 100644 --- a/client/menu/credits.gd +++ b/client/menu/credits.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking -# Copyright 2024 metamuffin, tpart -# +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# Copyright 2024 nokoe +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# extends Menu var contributors := ["sofviic", "metamuffin", "nokoe", "tpart"] diff --git a/client/menu/entry.gd b/client/menu/entry.gd index aaa449be..5ca6dacb 100644 --- a/client/menu/entry.gd +++ b/client/menu/entry.gd @@ -1,6 +1,5 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin -# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/menu/error.gd b/client/menu/error.gd index 84b2e56e..eabb2eb7 100644 --- a/client/menu/error.gd +++ b/client/menu/error.gd @@ -1,3 +1,18 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# extends Menu func _ready(): diff --git a/client/menu/game.gd b/client/menu/game.gd index f126b448..de496def 100644 --- a/client/menu/game.gd +++ b/client/menu/game.gd @@ -1,6 +1,6 @@ -# Undercooked - a game about cooking -# Copyright 2024 metamuffin +# Hurry Curry! - a game about cooking # Copyright 2024 tpart +# Copyright 2024 metamuffin # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/menu/ingame.gd b/client/menu/ingame.gd index 61984c99..659528aa 100644 --- a/client/menu/ingame.gd +++ b/client/menu/ingame.gd @@ -1,3 +1,19 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# Copyright 2024 tpart +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# extends Menu @onready var anim = $AnimationPlayer diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd index a905e670..6e315a19 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # Copyright 2024 nokoe # diff --git a/client/menu/lobby/player.gd b/client/menu/lobby/player.gd index c5c05eb4..ff211a23 100644 --- a/client/menu/lobby/player.gd +++ b/client/menu/lobby/player.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/main.gd b/client/menu/main.gd index d3f0f773..5df8f278 100644 --- a/client/menu/main.gd +++ b/client/menu/main.gd @@ -1,6 +1,5 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin -# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/menu/menu.gd b/client/menu/menu.gd index b7d95651..65ffa708 100644 --- a/client/menu/menu.gd +++ b/client/menu/menu.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin +# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/menu/menu_background.gd b/client/menu/menu_background.gd index 4304cdbf..d800c5d7 100644 --- a/client/menu/menu_background.gd +++ b/client/menu/menu_background.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin +# Copyright 2024 nokoe # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/menu_background.gdshader b/client/menu/menu_background.gdshader index cea00c5b..763c7b42 100644 --- a/client/menu/menu_background.gdshader +++ b/client/menu/menu_background.gdshader @@ -1,19 +1,19 @@ /* - Undercooked - a game about cooking + Hurry Curry! - a game about cooking Copyright 2024 metamuffin - + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License only. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. - + */ shader_type spatial; diff --git a/client/menu/overlay.gd b/client/menu/overlay.gd index 66ee8976..0bedd817 100644 --- a/client/menu/overlay.gd +++ b/client/menu/overlay.gd @@ -1,3 +1,19 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# Copyright 2024 nokoe +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name Overlay extends PanelContainer diff --git a/client/menu/scene_transition.gd b/client/menu/scene_transition.gd index 85ba5e55..77bce326 100644 --- a/client/menu/scene_transition.gd +++ b/client/menu/scene_transition.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin -# +# Copyright 2024 tpart +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name SceneTransition extends Control diff --git a/client/menu/server_message.gd b/client/menu/server_message.gd index ffd7887b..9e11fa0e 100644 --- a/client/menu/server_message.gd +++ b/client/menu/server_message.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings.gd b/client/menu/settings.gd index c028d533..800e3c66 100644 --- a/client/menu/settings.gd +++ b/client/menu/settings.gd @@ -1,4 +1,5 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 tpart # Copyright 2024 metamuffin # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/dropdown_setting.gd b/client/menu/settings/dropdown_setting.gd index 47f7355b..e57fc40f 100644 --- a/client/menu/settings/dropdown_setting.gd +++ b/client/menu/settings/dropdown_setting.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/game_setting.gd b/client/menu/settings/game_setting.gd index 67dca232..b4febdaf 100644 --- a/client/menu/settings/game_setting.gd +++ b/client/menu/settings/game_setting.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/range_setting.gd b/client/menu/settings/range_setting.gd index 97229db9..dca84b5e 100644 --- a/client/menu/settings/range_setting.gd +++ b/client/menu/settings/range_setting.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/settings_menu.gd b/client/menu/settings/settings_menu.gd index 1ae74910..7f42fa71 100644 --- a/client/menu/settings/settings_menu.gd +++ b/client/menu/settings/settings_menu.gd @@ -1,5 +1,7 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin +# Copyright 2024 tpart +# Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/menu/settings/settings_row.gd b/client/menu/settings/settings_row.gd index 8c71a8c5..bebc5c38 100644 --- a/client/menu/settings/settings_row.gd +++ b/client/menu/settings/settings_row.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/text_setting.gd b/client/menu/settings/text_setting.gd index c8aa49d4..faafa610 100644 --- a/client/menu/settings/text_setting.gd +++ b/client/menu/settings/text_setting.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/settings/toggle_setting.gd b/client/menu/settings/toggle_setting.gd index 90e42264..6d4150d4 100644 --- a/client/menu/settings/toggle_setting.gd +++ b/client/menu/settings/toggle_setting.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify diff --git a/client/menu/setup.gd b/client/menu/setup.gd index c3638d34..3997475c 100644 --- a/client/menu/setup.gd +++ b/client/menu/setup.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin +# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/multiplayer.gd b/client/multiplayer.gd index a1e865f2..4d071933 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # Copyright 2024 metamuffin # Copyright 2024 tpart diff --git a/client/player/character/character.gd b/client/player/character/character.gd index 710d7ac3..701603a3 100644 --- a/client/player/character/character.gd +++ b/client/player/character/character.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart +# Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/player/chat_bubble.gd b/client/player/chat_bubble.gd index 1329e198..8d6799bd 100644 --- a/client/player/chat_bubble.gd +++ b/client/player/chat_bubble.gd @@ -1,3 +1,19 @@ +# Hurry Curry! - a game about cooking +# Copyright 2024 nokoe +# Copyright 2024 tpart +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# class_name ChatBubble extends MeshInstance3D diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd index f4c793ae..17f6693f 100644 --- a/client/player/controllable_player.gd +++ b/client/player/controllable_player.gd @@ -1,19 +1,20 @@ -# Undercooked - a game about cooking -# Copyright 2024 nokoe +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin -# +# Copyright 2024 tpart +# Copyright 2024 nokoe +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name ControllablePlayer extends Player diff --git a/client/player/effect.gd b/client/player/effect.gd index fedf548f..00c95441 100644 --- a/client/player/effect.gd +++ b/client/player/effect.gd @@ -1,6 +1,6 @@ -# Undercooked - a game about cooking -# Copyright 2024 nokoe +# Hurry Curry! - a game about cooking # Copyright 2024 tpart +# Copyright 2024 nokoe # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/client/player/follow_camera.gd b/client/player/follow_camera.gd index db939a0b..62d3daed 100644 --- a/client/player/follow_camera.gd +++ b/client/player/follow_camera.gd @@ -1,5 +1,6 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe +# Copyright 2024 tpart # Copyright 2024 metamuffin # # This program is free software: you can redistribute it and/or modify diff --git a/client/player/interact_marker.gdshader b/client/player/interact_marker.gdshader index 6ac210fa..6f3cd435 100644 --- a/client/player/interact_marker.gdshader +++ b/client/player/interact_marker.gdshader @@ -1,19 +1,19 @@ /* - Undercooked - a game about cooking - Copyright 2024 nokoe - + Hurry Curry! - a game about cooking + Copyright 2024 metamuffin + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License only. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. - + */ shader_type spatial; diff --git a/client/player/item_bubble.gd b/client/player/item_bubble.gd index 6bfe60b1..b5dd7352 100644 --- a/client/player/item_bubble.gd +++ b/client/player/item_bubble.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name ItemBubble extends MeshInstance3D diff --git a/client/player/marker.gd b/client/player/marker.gd index 6e3e6ffa..7161c78e 100644 --- a/client/player/marker.gd +++ b/client/player/marker.gd @@ -1,18 +1,19 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin # Copyright 2024 nokoe -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# class_name Marker extends Node3D diff --git a/client/player/mirror.gd b/client/player/mirror.gd index ac9dfce9..bd8c5f8b 100644 --- a/client/player/mirror.gd +++ b/client/player/mirror.gd @@ -1,18 +1,18 @@ -# Undercooked - a game about cooking -# Copyright 2024 tpart -# +# Hurry Curry! - a game about cooking +# Copyright 2024 metamuffin +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. -# +# @tool # Hand mirror helper script, useful for animating characters diff --git a/client/player/onscreen_controls/controls.gd b/client/player/onscreen_controls/controls.gd index 7c235f0e..e05bf854 100644 --- a/client/player/onscreen_controls/controls.gd +++ b/client/player/onscreen_controls/controls.gd @@ -1,15 +1,15 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 tpart -# +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3 of the License only. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # diff --git a/client/player/onscreen_controls/virtual_joystick.gd b/client/player/onscreen_controls/virtual_joystick.gd index 83643417..5385a610 100644 --- a/client/player/onscreen_controls/virtual_joystick.gd +++ b/client/player/onscreen_controls/virtual_joystick.gd @@ -1,5 +1,4 @@ -# Undercooked - a game about cooking -# Copyright 2024 Marco F +# Hurry Curry! - a game about cooking # Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify diff --git a/client/player/player.gd b/client/player/player.gd index 569c1b88..c52cc6e0 100644 --- a/client/player/player.gd +++ b/client/player/player.gd @@ -1,4 +1,4 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 nokoe # Copyright 2024 metamuffin # Copyright 2024 tpart diff --git a/client/server.gd b/client/server.gd index 0352a931..f2d23877 100644 --- a/client/server.gd +++ b/client/server.gd @@ -1,6 +1,7 @@ -# Undercooked - a game about cooking +# Hurry Curry! - a game about cooking # Copyright 2024 metamuffin # Copyright 2024 nokoe +# Copyright 2024 tpart # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by |