diff options
author | Johannes Schickel | 2009-03-08 21:05:39 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-03-08 21:05:39 +0000 |
commit | 9068ae84246eae5b4915d18ca88fc23308a64875 (patch) | |
tree | 9661a126a2a6761c900a303ea20da6d42bb1c725 /engines/sci/gfx | |
parent | e123621cf99117143b7d80e70b911086daad766a (diff) | |
download | scummvm-rg350-9068ae84246eae5b4915d18ca88fc23308a64875.tar.gz scummvm-rg350-9068ae84246eae5b4915d18ca88fc23308a64875.tar.bz2 scummvm-rg350-9068ae84246eae5b4915d18ca88fc23308a64875.zip |
Formatting.
svn-id: r39245
Diffstat (limited to 'engines/sci/gfx')
-rw-r--r-- | engines/sci/gfx/palette.cpp | 20 | ||||
-rw-r--r-- | engines/sci/gfx/palette.h | 16 |
2 files changed, 19 insertions, 17 deletions
diff --git a/engines/sci/gfx/palette.cpp b/engines/sci/gfx/palette.cpp index a42b773725..da9a7c7f26 100644 --- a/engines/sci/gfx/palette.cpp +++ b/engines/sci/gfx/palette.cpp @@ -38,8 +38,7 @@ Palette::Palette(unsigned int s) { _refcount = 1; } -Palette::Palette(gfx_pixmap_color_t* colors, unsigned int s) -{ +Palette::Palette(gfx_pixmap_color_t *colors, unsigned int s) { _size = s; _colors = new PaletteEntry[s]; _parent = 0; @@ -58,7 +57,7 @@ Palette::~Palette() { _colors = 0; } -Palette* Palette::getref() { +Palette *Palette::getref() { _refcount++; return this; } @@ -72,7 +71,9 @@ void Palette::free() { } void Palette::resize(unsigned int s) { - if (s == _size) return; + if (s == _size) + return; + assert(!_parent); assert(_refcount == 1); assert(s >= _size); @@ -94,7 +95,9 @@ void Palette::unmerge() { int count = 0; for (unsigned int i = 0; i < _size; ++i) { - if (_colors[i].refcount == PALENTRY_FREE) continue; + if (_colors[i].refcount == PALENTRY_FREE) + continue; + int pi = _colors[i].parent_index; assert(pi >= 0); assert(pi < (int)_parent->_size); @@ -141,7 +144,7 @@ void Palette::setColor(unsigned int index, byte r, byte g, byte b) { _dirty = true; } -void Palette::makeSystemColor(unsigned int index, const PaletteEntry& color) { +void Palette::makeSystemColor(unsigned int index, const PaletteEntry &color) { assert(index < _size); PaletteEntry& entry = _colors[index]; entry.r = color.r; @@ -232,7 +235,8 @@ void Palette::mergeInto(Palette *parent) { for (unsigned int i = 0; i < _size; ++i) { PaletteEntry& entry = _colors[i]; - if (entry.refcount == PALENTRY_FREE) continue; + if (entry.refcount == PALENTRY_FREE) + continue; unsigned int pi = _parent->findNearbyColor(entry.r, entry.g, entry.b); #ifdef DEBUG_MERGE @@ -251,7 +255,7 @@ void Palette::mergeInto(Palette *parent) { #endif } -Palette* Palette::copy() { +Palette *Palette::copy() { assert(!_parent); Palette* p = new Palette(_size); p->name = "copy of " + name; diff --git a/engines/sci/gfx/palette.h b/engines/sci/gfx/palette.h index 19b21fed89..f3f790ca1a 100644 --- a/engines/sci/gfx/palette.h +++ b/engines/sci/gfx/palette.h @@ -59,27 +59,27 @@ struct gfx_pixmap_color_t; class Palette { public: explicit Palette(unsigned int size); - Palette(gfx_pixmap_color_t* colors, unsigned int size); + Palette(gfx_pixmap_color_t *colors, unsigned int size); ~Palette(); - Palette* getref(); + Palette *getref(); void free(); - Palette* copy(); + Palette *copy(); void resize(unsigned int size); void setColor(unsigned int index, byte r, byte g, byte b); - void makeSystemColor(unsigned int index, const PaletteEntry& color); - const PaletteEntry& getColor(unsigned int index) const { + void makeSystemColor(unsigned int index, const PaletteEntry &color); + const PaletteEntry &getColor(unsigned int index) const { assert(index < _size); return _colors[index]; } - const PaletteEntry& operator[](unsigned int index) const { + const PaletteEntry &operator[](unsigned int index) const { return getColor(index); } unsigned int size() const { return _size; } bool isDirty() const { return _dirty; } bool isShared() const { return _refcount > 1; } - Palette* getParent() { return _parent; } + Palette *getParent() { return _parent; } void markClean() { _dirty = false; } @@ -100,8 +100,6 @@ private: }; - - } // End of namespace Sci #endif // SCI_GFX_PALETTE_H |