aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorVicent Marti2008-06-13 17:47:56 +0000
committerVicent Marti2008-06-13 17:47:56 +0000
commit04b36a12e17252aa3f27392b334b053406847d8f (patch)
treec65fc8d7a1dea0d49ed8dd7ce30a6f61f4bfeff6 /graphics
parent5d92e2710a85f998f1f7bfbf4705880921d904e7 (diff)
downloadscummvm-rg350-04b36a12e17252aa3f27392b334b053406847d8f.tar.gz
scummvm-rg350-04b36a12e17252aa3f27392b334b053406847d8f.tar.bz2
scummvm-rg350-04b36a12e17252aa3f27392b334b053406847d8f.zip
Formating conventions.
Function parameter fixes. Parser fixes. svn-id: r32696
Diffstat (limited to 'graphics')
-rw-r--r--graphics/VectorRenderer.cpp40
-rw-r--r--graphics/VectorRenderer.h99
2 files changed, 68 insertions, 71 deletions
diff --git a/graphics/VectorRenderer.cpp b/graphics/VectorRenderer.cpp
index 2c50ddd0ec..abfd53edcd 100644
--- a/graphics/VectorRenderer.cpp
+++ b/graphics/VectorRenderer.cpp
@@ -51,39 +51,39 @@ VectorRenderer *createRenderer(int mode) {
/********************************************************************
* DRAWSTEP handling functions
********************************************************************/
-void VectorRenderer::drawStep(Common::Rect area, DrawStep *step) {
+void VectorRenderer::drawStep(const Common::Rect &area, const DrawStep &step) {
- if (step->flags & DrawStep::kStepCallbackOnly) {
- (this->*(step->drawing_call))(&area, step);
+ if (step.flags & DrawStep::kStepCallbackOnly) {
+ (this->*(step.drawing_call))(area, step);
return;
}
- if (step->flags & DrawStep::kStepSetBG)
- setBgColor(step->color2.r, step->color2.g, step->color2.b);
+ if (step.flags & DrawStep::kStepSetBG)
+ setBgColor(step.color2.r, step.color2.g, step.color2.b);
- if (step->flags & DrawStep::kStepSetFG)
- setFgColor(step->color1.r, step->color1.g, step->color1.b);
+ if (step.flags & DrawStep::kStepSetFG)
+ setFgColor(step.color1.r, step.color1.g, step.color1.b);
- if (step->flags & DrawStep::kStepSetGradient)
- setGradientColors(step->color1.r, step->color1.g, step->color1.b,
- step->color2.r, step->color2.g, step->color2.b);
+ if (step.flags & DrawStep::kStepSetGradient)
+ setGradientColors(step.color1.r, step.color1.g, step.color1.b,
+ step.color2.r, step.color2.g, step.color2.b);
- if (step->flags & DrawStep::kStepSetShadow)
- shadowEnable(step->shadow);
+ if (step.flags & DrawStep::kStepSetShadow)
+ shadowEnable(step.shadow);
- if (step->flags & DrawStep::kStepSetGradientFactor)
- setGradientFactor(step->factor);
+ if (step.flags & DrawStep::kStepSetGradientFactor)
+ setGradientFactor(step.factor);
- if (step->flags & DrawStep::kStepSetStroke)
- setStrokeWidth(step->stroke);
+ if (step.flags & DrawStep::kStepSetStroke)
+ setStrokeWidth(step.stroke);
- if (step->flags & DrawStep::kStepSetFillMode)
- setFillMode((FillMode)step->fill_mode);
+ if (step.flags & DrawStep::kStepSetFillMode)
+ setFillMode((FillMode)step.fill_mode);
- if (step->flags & DrawStep::kStepSettingsOnly)
+ if (step.flags & DrawStep::kStepSettingsOnly)
return;
- (this->*(step->drawing_call))(&area, step);
+ (this->*(step.drawing_call))(area, step);
}
/********************************************************************
diff --git a/graphics/VectorRenderer.h b/graphics/VectorRenderer.h
index 918ed1c39e..310f32f856 100644
--- a/graphics/VectorRenderer.h
+++ b/graphics/VectorRenderer.h
@@ -37,6 +37,7 @@
namespace Graphics {
class VectorRenderer;
+struct DrawStep;
struct DrawStep {
uint32 flags; /** Step flags, see DrawStepFlags */
@@ -64,7 +65,7 @@ struct DrawStep {
uint32 scale; /** scale of all the coordinates in FIXED POINT with 16 bits mantissa */
- void (VectorRenderer::*drawing_call)(Common::Rect*, DrawStep*); /** Pointer to drawing function */
+ void (VectorRenderer::*drawing_call)(const Common::Rect &, const DrawStep &); /** Pointer to drawing function */
enum DrawStepFlags {
kStepCallbackOnly = (1 << 0),
@@ -77,38 +78,6 @@ struct DrawStep {
kStepSetStroke = (1 << 7),
kStepSetFillMode = (1 << 8)
};
-
- void getPositions(Common::Rect *area, uint16 &in_x, uint16 &in_y, uint16 &in_w, uint16 &in_h) {
- if (fill_area) {
- in_x = area->left;
- in_y = area->top;
- in_w = area->width();
- in_h = area->height();
- } else {
- if (!x.relative) in_x = area->left + x.pos;
- else in_x = area->left + area->width() - x.pos;
-
- if (!y.relative) in_y = area->top + y.pos;
- else in_y = area->top + area->height() - y.pos;
-
- if (in_x + w > area->right) in_w = area->right - in_x;
- else in_w = w;
-
- if (in_y + h > area->bottom) in_h = area->bottom - in_y;
- else in_h = h;
- }
-
- if (scale != (1 << 16) && scale != 0) {
- in_x = (in_x * scale) >> 16;
- in_y = (in_y * scale) >> 16;
- in_w = (in_w * scale) >> 16;
- in_h = (in_h * scale) >> 16;
- }
- }
-
- uint8 getRadius() {
- return (((uint32)radius * scale) >> 16);
- }
};
VectorRenderer *createRenderer(int mode);
@@ -360,48 +329,76 @@ public:
_gradientFactor = factor;
}
+ void stepGetPositions(const DrawStep &step, const Common::Rect &area, uint16 &in_x, uint16 &in_y, uint16 &in_w, uint16 &in_h) {
+ if (step.fill_area) {
+ in_x = area.left;
+ in_y = area.top;
+ in_w = area.width();
+ in_h = area.height();
+ } else {
+ if (!step.x.relative) in_x = area.left + step.x.pos;
+ else in_x = area.left + area.width() - step.x.pos;
+
+ if (!step.y.relative) in_y = area.top + step.y.pos;
+ else in_y = area.top + area.height() - step.y.pos;
+
+ if (in_x + step.w > area.right) in_w = area.right - in_x;
+ else in_w = step.w;
+
+ if (in_y + step.h > area.bottom) in_h = area.bottom - in_y;
+ else in_h = step.h;
+ }
+
+ if (step.scale != (1 << 16) && step.scale != 0) {
+ in_x = (in_x * step.scale) >> 16;
+ in_y = (in_y * step.scale) >> 16;
+ in_w = (in_w * step.scale) >> 16;
+ in_h = (in_h * step.scale) >> 16;
+ }
+ }
+
/**
* DrawStep callback functions for each drawing feature
*/
- void drawCallback_CIRCLE(Common::Rect *area, DrawStep *step) {
+ void drawCallback_CIRCLE(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
- drawCircle(x, y, step->getRadius());
+ stepGetPositions(step, area, x, y, w, h);
+ drawCircle(x, y, (step.radius * step.scale) >> 16);
}
- void drawCallback_SQUARE(Common::Rect *area, DrawStep *step) {
+ void drawCallback_SQUARE(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
+ stepGetPositions(step, area, x, y, w, h);
drawSquare(x, y, w, h);
}
- void drawCallback_LINE(Common::Rect *area, DrawStep *step) {
+ void drawCallback_LINE(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
+ stepGetPositions(step, area, x, y, w, h);
drawLine(x, y, x + w, y + w);
}
- void drawCallback_ROUNDSQ(Common::Rect *area, DrawStep *step) {
+ void drawCallback_ROUNDSQ(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
+ stepGetPositions(step, area, x, y, w, h);
/* HACK! Radius of the rounded squares isn't scaled */
- drawRoundedSquare(x, y, step->radius, w, h);
+ drawRoundedSquare(x, y, step.radius, w, h);
}
- void drawCallback_FILLSURFACE(Common::Rect *area, DrawStep *step) {
+ void drawCallback_FILLSURFACE(const Common::Rect &area, const DrawStep &step) {
fillSurface();
}
- void drawCallback_TRIANGLE(Common::Rect *area, DrawStep *step) {
+ void drawCallback_TRIANGLE(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
- drawTriangle(x, y, w, h, (TriangleOrientation)step->extra_data);
+ stepGetPositions(step, area, x, y, w, h);
+ drawTriangle(x, y, w, h, (TriangleOrientation)step.extra_data);
}
- void drawCallback_BEVELSQ(Common::Rect *area, DrawStep *step) {
+ void drawCallback_BEVELSQ(const Common::Rect &area, const DrawStep &step) {
uint16 x, y, w, h;
- step->getPositions(area, x, y, w, h);
- drawBeveledSquare(x, y, w, h, step->extra_data);
+ stepGetPositions(step, area, x, y, w, h);
+ drawBeveledSquare(x, y, w, h, step.extra_data);
}
/**
@@ -411,7 +408,7 @@ public:
* @param area Zone to paint on
* @param step Pointer to a DrawStep struct.
*/
- virtual void drawStep(Common::Rect area, DrawStep *step);
+ virtual void drawStep(const Common::Rect &area, const DrawStep &step);
/**
* Copies the current surface to the system overlay