diff options
author | Max Horn | 2002-08-23 23:16:39 +0000 |
---|---|---|
committer | Max Horn | 2002-08-23 23:16:39 +0000 |
commit | e0bf735ff78e680ef2b57462fbac10438043d7ab (patch) | |
tree | 81ba60f81ee0f0a47816bd390d34f4c67a0eceb3 | |
parent | a1d1341331c527098bf446fd86dc4672d083267a (diff) | |
download | scummvm-rg350-e0bf735ff78e680ef2b57462fbac10438043d7ab.tar.gz scummvm-rg350-e0bf735ff78e680ef2b57462fbac10438043d7ab.tar.bz2 scummvm-rg350-e0bf735ff78e680ef2b57462fbac10438043d7ab.zip |
modified version of patch #598622: Round corners for flashlight
svn-id: r4811
-rw-r--r-- | scumm/gfx.cpp | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 5b4e43f1cf..5431c1aac0 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -643,8 +643,24 @@ void Scumm::drawFlashlight() blit(flashBuffer, bgbak, flashW*8, flashH); - // TODO - flashlight should have round corners - + // Round the corners. To do so, we simply hard-code a set of nicely + // rounded corners. + int corner_data[] = { 8, 6, 4, 3, 2, 2, 1, 1 }; + int minrow = 0; + int maxcol = flashW * 8 - 1; + int maxrow = (flashH - 1) * 320; + + for (i = 0; i < 8; i++, minrow += 320, maxrow -= 320) { + int d = corner_data[i]; + + for (j = 0; j < d; j++) { + flashBuffer[minrow + j] = 0; + flashBuffer[minrow + maxcol - j] = 0; + flashBuffer[maxrow + j] = 0; + flashBuffer[maxrow + maxcol - j] = 0; + } + } + _flashlightIsDrawn = true; } |