diff options
author | Filippos Karapetis | 2009-10-30 11:26:00 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-10-30 11:26:00 +0000 |
commit | 932cd54bbe0bb612eb828637c13ee068b4640b95 (patch) | |
tree | b3c9dc2c37d5242b954119f9b1028cea928ec112 /engines/sci | |
parent | 0c2ab7182966b1897413e145fe80b95fca454edc (diff) | |
download | scummvm-rg350-932cd54bbe0bb612eb828637c13ee068b4640b95.tar.gz scummvm-rg350-932cd54bbe0bb612eb828637c13ee068b4640b95.tar.bz2 scummvm-rg350-932cd54bbe0bb612eb828637c13ee068b4640b95.zip |
Rewrote the avoidpath debug code to use new graphics functions
svn-id: r45533
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/kpathing.cpp | 76 | ||||
-rw-r--r-- | engines/sci/gui/gui.cpp | 5 | ||||
-rw-r--r-- | engines/sci/gui/gui.h | 1 |
3 files changed, 40 insertions, 42 deletions
diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp index cc47f1abef..3ea52e8826 100644 --- a/engines/sci/engine/kpathing.cpp +++ b/engines/sci/engine/kpathing.cpp @@ -26,8 +26,7 @@ #include "sci/sci.h" #include "sci/engine/state.h" #include "sci/engine/kernel.h" -#include "sci/gfx/gfx_widgets.h" -#include "sci/gfx/gfx_state_internal.h" // required for GfxPort, GfxContainer +#include "sci/gui/gui.h" #include "common/list.h" @@ -307,41 +306,42 @@ static void draw_line(EngineState *s, Common::Point p1, Common::Point p2, int ty // Red : Barred access // Blue: Near-point access // Yellow: Contained access - int poly_colors[][3] = {{0, 255, 0}, {0, 0, 255}, {255, 0, 0}, {255, 255, 0}}; - gfx_color_t col; - GfxList *decorations = s->picture_port->_decorations; - GfxPrimitive *line; - - col.visual = PaletteEntry(poly_colors[type][0], poly_colors[type][1], poly_colors[type][2]); - col.alpha = 0; - col.priority = -1; - col.control = 0; - col.mask = GFX_MASK_VISUAL | GFX_MASK_PRIORITY; - - p1.y += 10; - p2.y += 10; - - line = gfxw_new_line(p1, p2, col, GFX_LINE_MODE_CORRECT, GFX_LINE_STYLE_NORMAL); - decorations->add((GfxContainer *)decorations, (GfxWidget *)line); + int poly_colors[4] = { + s->_gui->paletteFind(0, 255, 0), // green + s->_gui->paletteFind(255, 0, 0), // red + s->_gui->paletteFind(0, 0, 255), // blue + s->_gui->paletteFind(255, 255, 0) // yellow + }; + + // Clip + p1.x = CLIP<int16>(p1.x, 0, 319); + p1.y = CLIP<int16>(p1.y, 0, 199); + p2.x = CLIP<int16>(p2.x, 0, 319); + p2.y = CLIP<int16>(p2.y, 0, 199); + + assert(type >= 0 && type <= 3); + s->_gui->graphDrawLine(p1, p2, poly_colors[type], 255, 255); } static void draw_point(EngineState *s, Common::Point p, int start) { // Colors for starting and end point // Green: End point // Blue: Starting point - int point_colors[][3] = {{0, 255, 0}, {0, 0, 255}}; - gfx_color_t col; - GfxList *decorations = s->picture_port->_decorations; - GfxBox *box; - - col.visual = PaletteEntry(point_colors[start][0], point_colors[start][1], point_colors[start][2]); - col.alpha = 0; - col.priority = -1; - col.control = 0; - col.mask = GFX_MASK_VISUAL | GFX_MASK_PRIORITY; - - box = gfxw_new_box(s->gfx_state, gfx_rect(p.x - 1, p.y - 1 + 10, 3, 3), col, col, GFX_BOX_SHADE_FLAT); - decorations->add((GfxContainer *)decorations, (GfxWidget *)box); + int point_colors[2] = { + s->_gui->paletteFind(0, 255, 0), // green + s->_gui->paletteFind(0, 0, 255) // blue + }; + + Common::Rect rect = Common::Rect(p.x - 1, p.y - 1, p.x - 1 + 3, p.y - 1 + 3); + + // Clip + rect.top = CLIP<int16>(rect.top, 0, 199); + rect.bottom = CLIP<int16>(rect.bottom, 0, 199); + rect.left = CLIP<int16>(rect.left, 0, 319); + rect.right = CLIP<int16>(rect.right, 0, 319); + + assert(start >= 0 && start <= 1); + s->_gui->graphFrameBox(rect, point_colors[start]); } static void draw_polygon(EngineState *s, reg_t polygon) { @@ -1685,17 +1685,6 @@ static reg_t output_path(PathfindingState *p, EngineState *s) { reg_t kAvoidPath(EngineState *s, int argc, reg_t *argv) { Common::Point start = Common::Point(argv[0].toSint16(), argv[1].toSint16()); -#ifdef DEBUG_AVOIDPATH - GfxPort *port = s->picture_port; - - if (!port->_decorations) { - port->_decorations = gfxw_new_list(gfx_rect(0, 0, 320, 200), 0); - port->_decorations->setVisual(port->_visual); - } else { - port->_decorations->free_contents(port->_decorations); - } -#endif - switch (argc) { case 3 : { @@ -1730,6 +1719,9 @@ reg_t kAvoidPath(EngineState *s, int argc, reg_t *argv) { print_input(s, poly_list, start, end, opt); draw_input(s, poly_list, start, end, opt); } + + // Update the whole screen + s->_gui->graphUpdateBox(Common::Rect(0, 0, 319, 219)); #endif p = convert_polygon_set(s, poly_list, start, end, opt); diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index b86a1dc065..42b66d69aa 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -434,6 +434,11 @@ void SciGui::graphFillBox(Common::Rect rect, uint16 colorMask, int16 color, int1 _gfx->FillRect(rect, colorMask, color, priority, control); } +void SciGui::graphFrameBox(Common::Rect rect, int16 color) { + _gfx->PenColor(color); + _gfx->FrameRect(rect); +} + void SciGui::graphDrawLine(Common::Point startPoint, Common::Point endPoint, int16 color, int16 priority, int16 control) { _gfx->OffsetLine(startPoint, endPoint); _screen->drawLine(startPoint.x, startPoint.y, endPoint.x, endPoint.y, color, priority, control); diff --git a/engines/sci/gui/gui.h b/engines/sci/gui/gui.h index 2ed9a253c8..26010e9d67 100644 --- a/engines/sci/gui/gui.h +++ b/engines/sci/gui/gui.h @@ -93,6 +93,7 @@ public: virtual void graphFillBoxForeground(Common::Rect rect); virtual void graphFillBoxBackground(Common::Rect rect); virtual void graphFillBox(Common::Rect rect, uint16 colorMask, int16 color, int16 priority, int16 control); + virtual void graphFrameBox(Common::Rect rect, int16 color); virtual void graphDrawLine(Common::Point startPoint, Common::Point endPoint, int16 color, int16 priority, int16 control); virtual reg_t graphSaveBox(Common::Rect rect, uint16 flags); virtual void graphRestoreBox(reg_t handle); |