commit 14f739c4280a1feda73705f85d6b85b069e220bb Author: GabriellePipo Date: Fri Jan 10 15:42:10 2025 -0500 static body, rigid bodies, character body, area 2d, timer diff --git a/GodotProject/.gitattributes b/GodotProject/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/GodotProject/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/GodotProject/.gitignore b/GodotProject/.gitignore new file mode 100644 index 0000000..4709183 --- /dev/null +++ b/GodotProject/.gitignore @@ -0,0 +1,2 @@ +# Godot 4+ specific ignores +.godot/ diff --git a/GodotProject/icon.svg b/GodotProject/icon.svg new file mode 100644 index 0000000..b370ceb --- /dev/null +++ b/GodotProject/icon.svg @@ -0,0 +1 @@ + diff --git a/GodotProject/icon.svg.import b/GodotProject/icon.svg.import new file mode 100644 index 0000000..54d254d --- /dev/null +++ b/GodotProject/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ybbgirriw2ty" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/GodotProject/project.godot b/GodotProject/project.godot new file mode 100644 index 0000000..3574216 --- /dev/null +++ b/GodotProject/project.godot @@ -0,0 +1,16 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="January Game" +run/main_scene="res://scenes/game.tscn" +config/features=PackedStringArray("4.2", "Forward Plus") +config/icon="res://icon.svg" diff --git a/GodotProject/scenes/crate.tscn b/GodotProject/scenes/crate.tscn new file mode 100644 index 0000000..b2c7246 --- /dev/null +++ b/GodotProject/scenes/crate.tscn @@ -0,0 +1,11 @@ +[gd_scene load_steps=2 format=3 uid="uid://63qb2drh1l33"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_jflwv"] + +[node name="RigidBody2D" type="RigidBody2D" groups=["box"]] +rotation = -2.29882 +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="."] +shape = SubResource("RectangleShape2D_jflwv") +debug_color = Color(0.968627, 0.117647, 0.345098, 0.419608) diff --git a/GodotProject/scenes/game.tscn b/GodotProject/scenes/game.tscn new file mode 100644 index 0000000..5cbde81 --- /dev/null +++ b/GodotProject/scenes/game.tscn @@ -0,0 +1,65 @@ +[gd_scene load_steps=9 format=3 uid="uid://cxnmaxykhbgaq"] + +[ext_resource type="PackedScene" uid="uid://63qb2drh1l33" path="res://scenes/crate.tscn" id="1_0wmww"] +[ext_resource type="Script" path="res://scripts/gamecontroller.gd" id="1_5dy8j"] +[ext_resource type="Script" path="res://scripts/player.gd" id="2_aq17o"] +[ext_resource type="Script" path="res://scripts/Trigger.gd" id="3_4laji"] + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_f1luk"] +size = Vector2(172, 20) + +[sub_resource type="CircleShape2D" id="CircleShape2D_y4y41"] + +[sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_k1pyx"] + +[sub_resource type="CircleShape2D" id="CircleShape2D_wdyhk"] +radius = 34.1321 + +[node name="game" type="Node2D"] +script = ExtResource("1_5dy8j") + +[node name="StaticBody2D" type="StaticBody2D" parent="."] +position = Vector2(302, 266) +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D"] +shape = SubResource("RectangleShape2D_f1luk") + +[node name="RigidBody2D" parent="." instance=ExtResource("1_0wmww")] +position = Vector2(297, 129) +rotation = 0.688747 + +[node name="RigidBody2D2" parent="." instance=ExtResource("1_0wmww")] +position = Vector2(391, 64) +rotation = 0.358379 + +[node name="CharacterBody2D" type="CharacterBody2D" parent="."] +position = Vector2(286, 181) +script = ExtResource("2_aq17o") +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"] +shape = SubResource("CircleShape2D_y4y41") +debug_color = Color(0.752941, 0.211765, 0.984314, 0.419608) + +[node name="StaticBody2D2" type="StaticBody2D" parent="."] +position = Vector2(299, 490) +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBody2D2"] +shape = SubResource("WorldBoundaryShape2D_k1pyx") + +[node name="Trigger" type="Area2D" parent="."] +position = Vector2(439, 460) +script = ExtResource("3_4laji") +metadata/_edit_group_ = true + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Trigger"] +shape = SubResource("CircleShape2D_wdyhk") +debug_color = Color(0.466667, 0.592157, 0, 0.419608) + +[node name="RigidBody2D3" parent="." instance=ExtResource("1_0wmww")] +position = Vector2(256, 39) + +[connection signal="alert" from="Trigger" to="." method="_on_trigger_alert"] +[connection signal="body_entered" from="Trigger" to="Trigger" method="_on_body_entered"] diff --git a/GodotProject/scripts/Trigger.gd b/GodotProject/scripts/Trigger.gd new file mode 100644 index 0000000..b01400a --- /dev/null +++ b/GodotProject/scripts/Trigger.gd @@ -0,0 +1,9 @@ +extends Area2D +signal alert + + +func _on_body_entered(body): + print("Trigger detected object") + if body.is_in_group("box"): + print("this is a box") + alert.emit(body) diff --git a/GodotProject/scripts/gamecontroller.gd b/GodotProject/scripts/gamecontroller.gd new file mode 100644 index 0000000..c84978a --- /dev/null +++ b/GodotProject/scripts/gamecontroller.gd @@ -0,0 +1,30 @@ +extends Node2D +var totalBoxes = 3 +var timer:= Timer.new() +var countdown = 10 +# Called when the node enters the scene tree for the first time. +func _ready(): + add_child(timer) + timer.wait_time = 1 + timer.one_shot = false + timer.connect("timeout", secondCounter) + timer.start() + +func secondCounter(): + print("one second") + countdown -=1 + if countdown <=0: + print("you lose") + get_tree().reload_current_scene() + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + pass + +func _on_trigger_alert(body): + totalBoxes -=1 + body.queue_free() + if totalBoxes <=0: + print("you won") + get_tree().reload_current_scene() diff --git a/GodotProject/scripts/player.gd b/GodotProject/scripts/player.gd new file mode 100644 index 0000000..bab9d7c --- /dev/null +++ b/GodotProject/scripts/player.gd @@ -0,0 +1,33 @@ +extends CharacterBody2D + + +const SPEED = 300.0 +const JUMP_VELOCITY = -400.0 +@export var PUSH_FORCE = 90 + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting("physics/2d/default_gravity") + + +func _physics_process(delta): + # Add the gravity. + if not is_on_floor(): + velocity.y += gravity * delta + + # Handle jump. + if Input.is_action_just_pressed("ui_accept") and is_on_floor(): + velocity.y = JUMP_VELOCITY + + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var direction = Input.get_axis("ui_left", "ui_right") + if direction: + velocity.x = direction * SPEED + else: + velocity.x = move_toward(velocity.x, 0, SPEED) + + move_and_slide() + for i in get_slide_collision_count(): + var c = get_slide_collision(i) + if c.get_collider() is RigidBody2D: + c.get_collider().apply_central_impulse(-c.get_normal() * PUSH_FORCE)