GOB: Add CMPFile::recolor() and ANIFile::recolor()

This commit is contained in:
Sven Hesse 2012-07-08 00:19:48 +02:00
parent baec4d8778
commit 20a96733a5
4 changed files with 15 additions and 0 deletions

View File

@ -289,4 +289,9 @@ void ANIFile::drawLayer(Surface &dest, uint16 layer, uint16 part,
_layers[layer]->draw(dest, part, x, y, transp);
}
void ANIFile::recolor(uint8 from, uint8 to) {
for (LayerArray::iterator l = _layers.begin(); l != _layers.end(); ++l)
(*l)->recolor(from, to);
}
} // End of namespace Gob

View File

@ -92,6 +92,9 @@ public:
/** Draw an animation frame. */
void draw(Surface &dest, uint16 animation, uint16 frame, int16 x, int16 y) const;
/** Recolor the animation sprites. */
void recolor(uint8 from, uint8 to);
private:
typedef Common::Array<CMPFile *> LayerArray;
typedef Common::Array<Animation> AnimationArray;

View File

@ -250,4 +250,9 @@ uint16 CMPFile::addSprite(uint16 left, uint16 top, uint16 right, uint16 bottom)
return _coordinates->add(left, top, right, bottom);
}
void CMPFile::recolor(uint8 from, uint8 to) {
if (_surface)
_surface->recolor(from, to);
}
} // End of namespace Gob

View File

@ -70,6 +70,8 @@ public:
uint16 addSprite(uint16 left, uint16 top, uint16 right, uint16 bottom);
void recolor(uint8 from, uint8 to);
private:
GobEngine *_vm;