Files
OpenRA/OpenRA.Mods.RA/WaterPaletteRotation.cs
2012-04-25 21:32:33 +12:00

56 lines
1.4 KiB
C#

#region Copyright & License Information
/*
* Copyright 2007-2011 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 COPYING.
*/
#endregion
using System.Collections.Generic;
using System.Linq;
using OpenRA.FileFormats;
using OpenRA.Traits;
namespace OpenRA.Mods.RA
{
class WaterPaletteRotationInfo : ITraitInfo
{
public readonly int Base = 0x60;
public object Create(ActorInitializer init) { return new WaterPaletteRotation(this); }
}
class WaterPaletteRotation : ITick, IPaletteModifier
{
float t = 0;
readonly WaterPaletteRotationInfo info;
public WaterPaletteRotation(WaterPaletteRotationInfo info) { this.info = info; }
public void Tick(Actor self) { t += .25f; }
static string[] excludePalettes = { "cursor", "chrome", "colorpicker" };
static uint[] temp = new uint[7]; /* allocating this on the fly actually hurts our profile */
public void AdjustPalette(Dictionary<string,Palette> palettes)
{
foreach (var pal in palettes)
{
if (excludePalettes.Contains(pal.Key))
continue;
var colors = pal.Value.Values;
var rotate = (int)t % 7;
for (var i = 0; i < 7; i++)
temp[(rotate + i) % 7] = colors[info.Base + i];
for (var i = 0; i < 7; i++)
pal.Value.SetColor(info.Base + i, temp[i]);
}
}
}
}