1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "common/scummsys.h"
#include "zvision/graphics/effects/fog.h"
#include "zvision/zvision.h"
#include "zvision/graphics/render_manager.h"
#include "zvision/scripting/script_manager.h"
namespace ZVision {
FogFx::FogFx(ZVision *engine, uint32 key, Common::Rect region, bool ported, EffectMap *Map, const Common::String &clouds):
GraphicsEffect(engine, key, region, ported) {
_map = Map;
_r = 0;
_g = 0;
_b = 0;
_pos = 0;
if (_engine->getSearchManager()->hasFile(clouds))
_engine->getRenderManager()->readImageToSurface(clouds, _fog);
else
_engine->getRenderManager()->readImageToSurface("cloud.tga", _fog);
_mp.resize(_fog.h);
for (int16 i = 0; i < _fog.h; i++) {
_mp[i].resize(_fog.w);
for (int16 j = 0; j < _fog.w; j++)
_mp[i][j] = true;
}
for (uint8 i = 0; i < 32; i++)
_colorMap[i] = 0;
}
FogFx::~FogFx() {
if (_map)
delete _map;
for (uint16 i = 0; i < _mp.size(); i++)
_mp[i].clear();
_mp.clear();
}
const Graphics::Surface *FogFx::draw(const Graphics::Surface &srcSubRect) {
_surface.copyFrom(srcSubRect);
EffectMap::iterator it = _map->begin();
uint32 cnt = 0;
for (uint16 j = 0; j < _surface.h; j++) {
uint16 *lineBuf = (uint16 *)_surface.getBasePtr(0, j);
for (uint16 i = 0; i < _surface.w; i++) {
if (it->inEffect) {
// Not 100% equivalent, but looks nice and not buggy
uint8 sr, sg, sb;
_engine->_resourcePixelFormat.colorToRGB(lineBuf[i], sr, sg, sb);
uint16 fogColor = *(uint16 *)_fog.getBasePtr((i + _pos) % _fog.w, j);
uint8 dr, dg, db;
_engine->_resourcePixelFormat.colorToRGB(_colorMap[fogColor & 0x1F], dr, dg, db);
uint16 fr = dr + sr;
if (fr > 255)
fr = 255;
uint16 fg = dg + sg;
if (fg > 255)
fg = 255;
uint16 fb = db + sb;
if (fb > 255)
fb = 255;
lineBuf[i] = _engine->_resourcePixelFormat.RGBToColor(fr, fg, fb);
}
cnt++;
if (cnt >= it->count) {
it++;
cnt = 0;
}
if (it == _map->end())
break;
}
if (it == _map->end())
break;
}
return &_surface;
}
void FogFx::update() {
_pos += _engine->getScriptManager()->getStateValue(StateKey_EF9_Speed);
_pos %= _fog.w;
uint8 dr = _engine->getScriptManager()->getStateValue(StateKey_EF9_R);
uint8 dg = _engine->getScriptManager()->getStateValue(StateKey_EF9_G);
uint8 db = _engine->getScriptManager()->getStateValue(StateKey_EF9_B);
dr = CLIP((int)dr, 0, 31);
dg = CLIP((int)dg, 0, 31);
db = CLIP((int)db, 0, 31);
if (dr != _r || dg != _g || db != _b) {
if (_r > dr)
_r--;
else if (_r < dr)
_r++;
if (_g > dg)
_g--;
else if (_g < dg)
_g++;
if (_b > db)
_b--;
else if (_b < db)
_b++;
// Not 100% equivalent, but looks nice and not buggy
_colorMap[31] = _engine->_resourcePixelFormat.RGBToColor(_r << 3, _g << 3, _b << 3);
for (uint8 i = 0; i < 31; i++) {
float perc = (float)i / 31.0;
uint8 cr = (uint8)((float)_r * perc);
uint8 cg = (uint8)((float)_g * perc);
uint8 cb = (uint8)((float)_b * perc);
_colorMap[i] = _engine->_resourcePixelFormat.RGBToColor(cr << 3, cg << 3, cb << 3);
}
}
for (uint16 j = 0; j < _fog.h; j++) {
uint16 *pix = (uint16 *)_fog.getBasePtr(0, j);
for (uint16 i = 0; i < _fog.w; i++) {
if (_mp[j][i]) {
if ((pix[i] & 0x1F) == 0x1F) {
pix[i]--;
_mp[j][i] = false;
} else
pix[i]++;
} else {
if ((pix[i] & 0x1F) == 0) {
pix[i]++;
_mp[j][i] = true;
} else
pix[i]--;
}
}
}
}
} // End of namespace ZVision
|