Files
OpenRA/OpenRA.Mods.RA/WaterPaletteRotation.cs
2010-08-14 17:52:59 +12:00

51 lines
1.3 KiB
C#

#region Copyright & License Information
/*
* Copyright 2007-2010 The OpenRA Developers (see AUTHORS)
* This file is part of OpenRA, which is free software. It is made
* available to you under the terms of the GNU General Public License
* as published by the Free Software Foundation. For more information,
* see LICENSE.
*/
#endregion
using System.Drawing;
using OpenRA.Traits;
namespace OpenRA.Mods.RA
{
class WaterPaletteRotationInfo : ITraitInfo
{
public readonly bool CncMode = false;
public object Create(ActorInitializer init) { return new WaterPaletteRotation(CncMode); }
}
class WaterPaletteRotation : ITick, IPaletteModifier
{
bool cncmode = false;
public WaterPaletteRotation(bool cncmode)
{
this.cncmode = cncmode;
}
float t = 0;
public void Tick(Actor self)
{
t += .25f;
}
public void AdjustPalette(Bitmap b)
{
var rotate = (int)t % 7;
using (var bitmapCopy = new Bitmap(b))
for (int j = 0; j < b.Height; j++)
for (int i = 0; i < 7; i++)
{
if (cncmode)
b.SetPixel(0x20 + (rotate + i) % 7, j, bitmapCopy.GetPixel(0x20 + i, j));
else
b.SetPixel(0x60 + (rotate + i) % 7, j, bitmapCopy.GetPixel(0x60 + i, j));
}
}
}
}