mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
GOB: Add CMPFile::recolor() and ANIFile::recolor()
This commit is contained in:
parent
baec4d8778
commit
20a96733a5
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -70,6 +70,8 @@ public:
|
||||
|
||||
uint16 addSprite(uint16 left, uint16 top, uint16 right, uint16 bottom);
|
||||
|
||||
void recolor(uint8 from, uint8 to);
|
||||
|
||||
private:
|
||||
GobEngine *_vm;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user