mirror of
https://github.com/Phantop/LADXHD.git
synced 2024-11-01 04:14:22 +00:00
58 lines
2.2 KiB
C#
58 lines
2.2 KiB
C#
using Microsoft.Xna.Framework;
|
|
using ProjectZ.Base;
|
|
using ProjectZ.InGame.GameObjects.Base;
|
|
using ProjectZ.InGame.GameObjects.Base.CObjects;
|
|
using ProjectZ.InGame.GameObjects.Base.Components;
|
|
using ProjectZ.InGame.Map;
|
|
using ProjectZ.InGame.SaveLoad;
|
|
using ProjectZ.InGame.Things;
|
|
|
|
namespace ProjectZ.InGame.GameObjects.NPCs
|
|
{
|
|
class ObjHippo : GameObject
|
|
{
|
|
private readonly Animator _animator;
|
|
|
|
private int _direction = -1;
|
|
|
|
public ObjHippo() : base("hippo") { }
|
|
|
|
public ObjHippo(Map.Map map, int posX, int posY) : base(map)
|
|
{
|
|
EntityPosition = new CPosition(posX + 8, posY + 16, 0);
|
|
EntitySize = new Rectangle(-12, -24, 24, 24);
|
|
|
|
_animator = AnimatorSaveLoad.LoadAnimator("NPCs/npc_hippo");
|
|
_animator.Play("idle_" + _direction);
|
|
|
|
var sprite = new CSprite(EntityPosition);
|
|
var animationComponent = new AnimationComponent(_animator, sprite, Vector2.Zero);
|
|
|
|
var body = new BodyComponent(EntityPosition, -9, -13, 18, 12, 8);
|
|
|
|
AddComponent(BodyComponent.Index, body);
|
|
AddComponent(CollisionComponent.Index, new BodyCollisionComponent(body, Values.CollisionTypes.Normal | Values.CollisionTypes.PushIgnore));
|
|
AddComponent(InteractComponent.Index, new InteractComponent(new CBox(EntityPosition, -9, -5, 18, 5, 8), Interact));
|
|
AddComponent(BaseAnimationComponent.Index, animationComponent);
|
|
AddComponent(UpdateComponent.Index, new UpdateComponent(Update));
|
|
AddComponent(DrawComponent.Index, new BodyDrawComponent(body, sprite, Values.LayerPlayer));
|
|
AddComponent(DrawShadowComponent.Index, new BodyDrawShadowComponent(body, sprite));
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
var box = new RectangleF(EntityPosition.X + _direction * 14 - 4, EntityPosition.Y - 14, 8, 18);
|
|
if (MapManager.ObjLink.BodyRectangle.Intersects(box))
|
|
{
|
|
_direction = -_direction;
|
|
_animator.Play("idle_" + _direction);
|
|
}
|
|
}
|
|
|
|
private bool Interact()
|
|
{
|
|
Game1.GameManager.StartDialogPath("npc_hippo");
|
|
return true;
|
|
}
|
|
}
|
|
} |