* Implement BeamComponent in C# and enhance marketplace button functionality * Add core game components including ConfigFileHandler, GameManager, SaveSystem, and UIManager * cleanup * Add new components: CanPickUpComponent, CollapsableComponent, DestroyableComponent, EffectInflictorComponent, StatusEffectComponent, and StatusEffectDataResource * Add new components: EnemyDeathComponent, EnemyWaveTriggerComponent, and ExitDoorComponent * Add new components: ExplosiveComponent, FadeAwayComponent, FireEffectComponent, FlipComponent, GravityMotionComponent, LaunchComponent, and update PlatformMovement with LastDirection property * Add new components: HealComponent, HitComponent, HomingMissileMotionComponent, LeverComponent, and TriggerLeverComponent * Refactor GameManager session state handling and add new components: CanBeLaunchedComponent, IceEffectComponent, JumpPadComponent, KillPlayerOutOfScreenComponent, KnockbackComponent, LifetimeComponent, MagneticSkillComponent, OutOfScreenComponent, PeriodicShootingComponent, PlayerDeathComponent, ProgressiveDamageComponent, ProjectileComponent, ProjectileInitComponent, RequirementComponent, ScoreComponent, ShipMovementComponent, ShipShooterComponent, and SideToSideMovementComponent * Add new components: CannotStompComponent, SkillUnlockedComponent, SpaceshipEnterComponent, SpaceshipExitComponent, SpinComponent, StompDamageComponent, StraightMotionComponent, TerrainHitFx, TooltipComponent, TrailComponent, and UnlockOnRequirementComponent * Add new components: BrickThrowComponent, BulletComponent, CageComponent, ChaseLevelComponent, CleanupComponent, and ThrowInputResource classes; implement game saving and loading logic in SaveSystem * Add audio settings management and platform movement component * Add ChargeProgressBar, Credits, and GameOverScreen components for UI management * Add UID files for ConfigFileHandler, GameManager, SaveSystem, and UIManager components * Add README.md file with game description and features; include project license and contribution guidelines * Add Hud component for UI management; display health, coins, and lives * Add MainMenu and Marketplace components; implement game management and skill unlocking features * Add PauseMenu, SettingsMenu, and SkillButton components; enhance game management and UI functionality
117 lines
3.3 KiB
C#
117 lines
3.3 KiB
C#
using Godot;
|
|
|
|
namespace Mr.BrickAdventures.scripts.components;
|
|
|
|
public partial class SideToSideMovementComponent : Node
|
|
{
|
|
[Export] public Sprite2D Sprite { get; set; }
|
|
[Export] public float Speed { get; set; } = 10.0f;
|
|
[Export] public float WaitTime { get; set; } = 1.0f;
|
|
[Export] public RayCast2D LeftRay { get; set; }
|
|
[Export] public RayCast2D RightRay { get; set; }
|
|
[Export] public RayCast2D LeftWallRay { get; set; }
|
|
[Export] public RayCast2D RightWallRay { get; set; }
|
|
|
|
private Vector2 _direction = Vector2.Left;
|
|
private Vector2 _newDirection = Vector2.Left;
|
|
private Timer _timer;
|
|
private bool _triggeredDirectionChange = false;
|
|
|
|
[Signal]
|
|
public delegate void DirectionChangedEventHandler();
|
|
|
|
public Vector2 Direction => _direction;
|
|
|
|
public override void _Ready()
|
|
{
|
|
SetupTimer();
|
|
DirectionChanged += OnDirectionChanged;
|
|
}
|
|
|
|
public override void _PhysicsProcess(double delta)
|
|
{
|
|
HandleDirection();
|
|
HandleSpriteFlip();
|
|
HandleMovement(delta);
|
|
}
|
|
|
|
private void HandleDirection()
|
|
{
|
|
// Check if we are colliding with the left wall
|
|
if (LeftWallRay.IsColliding())
|
|
{
|
|
_newDirection = Vector2.Right;
|
|
EmitSignalDirectionChanged();
|
|
return;
|
|
}
|
|
|
|
// Check if we are colliding with the right wall
|
|
if (RightWallRay.IsColliding())
|
|
{
|
|
_newDirection = Vector2.Left;
|
|
EmitSignalDirectionChanged();
|
|
return;
|
|
}
|
|
// We are not colliding with anything, which means we don't have ground to walk on. Stop moving.
|
|
if (!LeftRay.IsColliding() && !RightRay.IsColliding())
|
|
{
|
|
_newDirection = Vector2.Zero;
|
|
return;
|
|
}
|
|
|
|
// If the left ray is not colliding and the right ray is colliding, that means we have ground to the right and we should change direction to the right.
|
|
if (!LeftRay.IsColliding() && RightRay.IsColliding())
|
|
{
|
|
_newDirection = Vector2.Right;
|
|
EmitSignalDirectionChanged();
|
|
return;
|
|
}
|
|
|
|
// If the right ray is not colliding and the left ray is colliding, that means we have ground to the left and we should change direction to the left.
|
|
if (!RightRay.IsColliding() && LeftRay.IsColliding())
|
|
{
|
|
_newDirection = Vector2.Left;
|
|
EmitSignalDirectionChanged();
|
|
return;
|
|
}
|
|
}
|
|
|
|
private void HandleSpriteFlip()
|
|
{
|
|
Sprite.FlipH = _direction == Vector2.Left;
|
|
}
|
|
|
|
private void HandleMovement(double delta)
|
|
{
|
|
var root = Owner as Node2D;
|
|
if (root == null) return;
|
|
|
|
root.Position += _direction * Speed * (float)delta;
|
|
}
|
|
|
|
private void OnDirectionChanged()
|
|
{
|
|
if (_direction == _newDirection || _triggeredDirectionChange)
|
|
return;
|
|
|
|
_triggeredDirectionChange = true;
|
|
_direction = Vector2.Zero;
|
|
_timer.Start();
|
|
}
|
|
|
|
private void OnTimerTimeout()
|
|
{
|
|
_timer.Stop();
|
|
_direction = _newDirection;
|
|
_triggeredDirectionChange = false;
|
|
}
|
|
|
|
private void SetupTimer()
|
|
{
|
|
_timer = new Timer();
|
|
AddChild(_timer);
|
|
_timer.WaitTime = WaitTime;
|
|
_timer.OneShot = true;
|
|
_timer.Timeout += OnTimerTimeout;
|
|
}
|
|
} |