using System; using System.Collections.Generic; using OpenRa.Graphics; namespace OpenRa.Traits { public abstract class RenderSimpleInfo : ITraitInfo { public readonly string Image = null; public readonly string Palette = null; public abstract object Create(Actor self); } public abstract class RenderSimple : IRender, ITick { public Dictionary anims = new Dictionary(); public Animation anim { get { return anims[""].Animation; } protected set { anims[""].Animation = value; } } public string GetImage(Actor self) { return self.Info.Traits.Get().Image ?? self.Info.Name; } public RenderSimple(Actor self) { anims.Add( "", new Animation( GetImage(self) ) ); } public virtual IEnumerable Render( Actor self ) { var palette = self.Info.Traits.Get().Palette; foreach( var a in anims.Values ) if( a.DisableFunc == null || !a.DisableFunc() ) yield return ( palette == null ) ? a.Image( self ) : a.Image( self ).WithPalette(palette); } public virtual void Tick(Actor self) { foreach( var a in anims.Values ) a.Animation.Tick(); } public class AnimationWithOffset { public Animation Animation; public Func OffsetFunc; public Func DisableFunc; public int ZOffset; public AnimationWithOffset( Animation a ) : this( a, null, null ) { } public AnimationWithOffset( Animation a, Func o, Func d ) { this.Animation = a; this.OffsetFunc = o; this.DisableFunc = d; } public Renderable Image( Actor self ) { var r = Util.Centered( self, Animation.Image, self.CenterLocation + (OffsetFunc != null ? OffsetFunc() : float2.Zero) ); return ZOffset != 0 ? r.WithZOffset(ZOffset) : r; } public static implicit operator AnimationWithOffset( Animation a ) { return new AnimationWithOffset( a ); } } } }