aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2007-11-22 08:20:28 +0000
committerMax Horn2007-11-22 08:20:28 +0000
commit982a2fce7554600d95dc227f9f736f37380da1ef (patch)
tree0002605eb2422388648f972342fd4208e6a6fdd8 /engines
parent7dc07028d2285ec4bb26da50a99232e8c743d3ae (diff)
downloadscummvm-rg350-982a2fce7554600d95dc227f9f736f37380da1ef.tar.gz
scummvm-rg350-982a2fce7554600d95dc227f9f736f37380da1ef.tar.bz2
scummvm-rg350-982a2fce7554600d95dc227f9f736f37380da1ef.zip
Refactore the AGI floodfill code
svn-id: r29600
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/picture.cpp82
-rw-r--r--engines/agi/picture.h3
2 files changed, 36 insertions, 49 deletions
diff --git a/engines/agi/picture.cpp b/engines/agi/picture.cpp
index 08b69d56ae..60a1bd0f91 100644
--- a/engines/agi/picture.cpp
+++ b/engines/agi/picture.cpp
@@ -25,6 +25,7 @@
#include "agi/agi.h"
#include "agi/graphics.h"
+#include "common/stack.h"
namespace Agi {
@@ -230,9 +231,6 @@ INLINE int PictureMgr::isOkFillHere(int x, int y) {
if (x < 0 || x >= _width || y < 0 || y >= _height)
return false;
- if (!_scrOn && !_priOn)
- return false;
-
p = _vm->_game.sbuf16c[y * _width + x];
if (_flags & kPicFTrollMode)
@@ -250,59 +248,51 @@ INLINE int PictureMgr::isOkFillHere(int x, int y) {
/**************************************************************************
** agi_fill
**************************************************************************/
-void PictureMgr::fillScanline(int x, int y) {
- unsigned int c;
- int newspanUp, newspanDown;
-
- if (!isOkFillHere(x, y))
+void PictureMgr::agiFill(unsigned int x, unsigned int y) {
+ if (!_scrOn && !_priOn)
return;
- /* Scan for left border */
- for (c = x - 1; isOkFillHere(c, y); c--);
+ // Push initial pixel on the stack
+ Common::Stack<Common::Point> stack;
+ stack.push(Common::Point(x,y));
- newspanUp = newspanDown = 1;
- for (c++; isOkFillHere(c, y); c++) {
- putVirtPixel(c, y);
- if (isOkFillHere(c, y - 1)) {
- if (newspanUp) {
- _stack.push(c + (_width * 2) * (y - 1));
- newspanUp = 0;
+ // Exit if stack is empty
+ while (!stack.empty()) {
+ Common::Point p = stack.pop();
+ unsigned int c;
+ int newspanUp, newspanDown;
+
+ if (!isOkFillHere(p.x, p.y))
+ continue;
+
+ /* Scan for left border */
+ for (c = p.x - 1; isOkFillHere(c, p.y); c--)
+ ;
+
+ newspanUp = newspanDown = 1;
+ for (c++; isOkFillHere(c, p.y); c++) {
+ putVirtPixel(c, p.y);
+ if (isOkFillHere(c, p.y - 1)) {
+ if (newspanUp) {
+ stack.push(Common::Point(c,p.y-1));
+ newspanUp = 0;
+ }
+ } else {
+ newspanUp = 1;
}
- } else {
- newspanUp = 1;
- }
- if (isOkFillHere(c, y + 1)) {
- if (newspanDown) {
- _stack.push(c + (_width * 2) * (y + 1));
- newspanDown = 0;
+ if (isOkFillHere(c, p.y + 1)) {
+ if (newspanDown) {
+ stack.push(Common::Point(c,p.y+1));
+ newspanDown = 0;
+ }
+ } else {
+ newspanDown = 1;
}
- } else {
- newspanDown = 1;
}
}
}
-void PictureMgr::agiFill(unsigned int x, unsigned int y) {
- uint16 c;
- _stack.push(x + (_width * 2) * y);
-
- for (;;) {
- // Exit if stack is empty
- if (_stack.empty())
- break;
-
- c = _stack.pop();
-
- x = c % (_width * 2);
- y = c / (_width * 2);
-
- fillScanline(x, y);
- }
-
- _stack.clear();
-}
-
/**************************************************************************
** xCorner
**
diff --git a/engines/agi/picture.h b/engines/agi/picture.h
index 8604b72d10..9277bc9885 100644
--- a/engines/agi/picture.h
+++ b/engines/agi/picture.h
@@ -27,7 +27,6 @@
#define AGI_PICTURE_H
#include "agi/agi.h"
-#include "common/stack.h"
namespace Agi {
@@ -73,7 +72,6 @@ private:
void dynamicDrawLine();
void absoluteDrawLine();
INLINE int isOkFillHere(int x, int y);
- void fillScanline(int x, int y);
void agiFill(unsigned int x, unsigned int y);
void xCorner(bool skipOtherCoords = false);
void yCorner(bool skipOtherCoords = false);
@@ -141,7 +139,6 @@ private:
int _flags;
int _currentStep;
- Common::Stack<uint16> _stack; // For the flood fill routines
};
} // End of namespace Agi