aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorFlorian Kagerer2008-03-30 02:43:22 +0000
committerFlorian Kagerer2008-03-30 02:43:22 +0000
commit91e30d8e50d90928e71856f5b79ef2034714d02d (patch)
treedc29c8ad01c2855e5f509e70086a12828444a63a /engines/kyra
parentff5743ba8f71591a115559d8f0727adc0ded3b86 (diff)
downloadscummvm-rg350-91e30d8e50d90928e71856f5b79ef2034714d02d.tar.gz
scummvm-rg350-91e30d8e50d90928e71856f5b79ef2034714d02d.tar.bz2
scummvm-rg350-91e30d8e50d90928e71856f5b79ef2034714d02d.zip
- get rid of const_cast
svn-id: r31317
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/screen.cpp21
-rw-r--r--engines/kyra/screen.h14
2 files changed, 16 insertions, 19 deletions
diff --git a/engines/kyra/screen.cpp b/engines/kyra/screen.cpp
index 37d05fe464..ac212b5026 100644
--- a/engines/kyra/screen.cpp
+++ b/engines/kyra/screen.cpp
@@ -1331,7 +1331,7 @@ void Screen::drawShape(uint8 pageNum, const uint8 *shapeData, int x, int y, int
}
t *= -1;
- const uint8 *tmp = dst;
+ uint8 *tmp = dst;
do {
_dsOffscreenScaleVal1 = 0;
@@ -1416,7 +1416,7 @@ void Screen::drawShape(uint8 pageNum, const uint8 *shapeData, int x, int y, int
addDirtyRect(x, y, shpWidthScaled1, shapeHeight);
clearOverlayRect(pageNum, x, y, shpWidthScaled1, shapeHeight);
- const uint8 *d = dst;
+ uint8 *d = dst;
while (shapeHeight--) {
while (!(scaleCounterV & 0xff00)) {
@@ -1438,10 +1438,7 @@ void Screen::drawShape(uint8 pageNum, const uint8 *shapeData, int x, int y, int
if (_dsTmpWidth) {
cnt += shpWidthScaled1;
if (cnt > 0) {
- // very ugly hack to pass non const version of d
- uint8 *tempDst = const_cast<uint8*>(d);
- (this->*_dsProcessLine)(tempDst, s, cnt, scaleState);
- d = tempDst;
+ (this->*_dsProcessLine)(d, s, cnt, scaleState);
}
cnt += _dsOffscreenRight;
if (cnt)
@@ -1456,7 +1453,7 @@ void Screen::drawShape(uint8 pageNum, const uint8 *shapeData, int x, int y, int
va_end(args);
}
-int Screen::drawShapeMarginNoScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeMarginNoScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt) {
while (cnt-- > 0) {
if (*src++)
continue;
@@ -1468,7 +1465,7 @@ int Screen::drawShapeMarginNoScaleUpwind(const uint8 *&dst, const uint8 *&src, i
return 0;
}
-int Screen::drawShapeMarginNoScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeMarginNoScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt) {
while (cnt-- > 0) {
if (*src++)
continue;
@@ -1480,7 +1477,7 @@ int Screen::drawShapeMarginNoScaleDownwind(const uint8 *&dst, const uint8 *&src,
return 0;
}
-int Screen::drawShapeMarginScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeMarginScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt) {
_dsTmpWidth -= cnt;
bool found = false;
@@ -1509,7 +1506,7 @@ int Screen::drawShapeMarginScaleUpwind(const uint8 *&dst, const uint8 *&src, int
return res;
}
-int Screen::drawShapeMarginScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeMarginScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt) {
_dsTmpWidth -= cnt;
bool found = false;
@@ -1538,7 +1535,7 @@ int Screen::drawShapeMarginScaleDownwind(const uint8 *&dst, const uint8 *&src, i
return res;
}
-int Screen::drawShapeSkipScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeSkipScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt) {
cnt = _dsTmpWidth;
if (cnt <= 0)
@@ -1553,7 +1550,7 @@ int Screen::drawShapeSkipScaleUpwind(const uint8 *&dst, const uint8 *&src, int &
return 0;
}
-int Screen::drawShapeSkipScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt) {
+int Screen::drawShapeSkipScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt) {
cnt = _dsTmpWidth;
bool found = false;
diff --git a/engines/kyra/screen.h b/engines/kyra/screen.h
index 44e400a284..eb4e495596 100644
--- a/engines/kyra/screen.h
+++ b/engines/kyra/screen.h
@@ -180,12 +180,12 @@ public:
void drawShape(uint8 pageNum, const uint8 *shapeData, int x, int y, int sd, int flags, ...);
- int drawShapeMarginNoScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt);
- int drawShapeMarginNoScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt);
- int drawShapeMarginScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt);
- int drawShapeMarginScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt);
- int drawShapeSkipScaleUpwind(const uint8 *&dst, const uint8 *&src, int &cnt);
- int drawShapeSkipScaleDownwind(const uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeMarginNoScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeMarginNoScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeMarginScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeMarginScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeSkipScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt);
+ int drawShapeSkipScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt);
void drawShapeProcessLineNoScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt, int scaleState);
void drawShapeProcessLineNoScaleDownwind(uint8 *&dst, const uint8 *&src, int &cnt, int scaleState);
void drawShapeProcessLineScaleUpwind(uint8 *&dst, const uint8 *&src, int &cnt, int scaleState);
@@ -199,7 +199,7 @@ public:
void drawShapePlotType13(uint8 *dst, uint8 cmd);
void drawShapePlotType14(uint8 *dst, uint8 cmd);
- typedef int (Screen::*DsMarginSkipFunc)(const uint8 *&dst, const uint8 *&src, int &cnt);
+ typedef int (Screen::*DsMarginSkipFunc)(uint8 *&dst, const uint8 *&src, int &cnt);
typedef void (Screen::*DsLineFunc)(uint8 *&dst, const uint8 *&src, int &cnt, int scaleState);
typedef void (Screen::*DsPlotFunc)(uint8 *dst, uint8 cmd);