2003-05-29 10:31:05 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
|
|
|
* Copyright (C) 2001 Ludvig Strigeus
|
2005-01-01 16:09:25 +00:00
|
|
|
* Copyright (C) 2001-2005 The ScummVM project
|
2003-05-29 10:31:05 +00:00
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-05-29 10:43:57 +00:00
|
|
|
#include "stdafx.h"
|
2003-10-03 18:33:57 +00:00
|
|
|
#include "scumm/base-costume.h"
|
2005-03-27 00:42:53 +00:00
|
|
|
#include "scumm/costume.h"
|
2003-05-29 10:31:05 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
namespace Scumm {
|
2003-05-29 10:31:05 +00:00
|
|
|
|
2004-09-24 21:36:04 +00:00
|
|
|
byte BaseCostumeRenderer::drawCostume(const VirtScreen &vs, int numStrips, const Actor *a, bool drawToBackBuf) {
|
2003-05-29 10:31:05 +00:00
|
|
|
int i;
|
|
|
|
byte result = 0;
|
|
|
|
|
2004-10-09 00:06:36 +00:00
|
|
|
_out = vs;
|
2004-08-29 11:27:16 +00:00
|
|
|
if (drawToBackBuf)
|
2004-10-09 00:06:36 +00:00
|
|
|
_out.pixels = vs.getBackPixels(0, 0);
|
2004-06-29 05:36:01 +00:00
|
|
|
else
|
2004-10-09 00:06:36 +00:00
|
|
|
_out.pixels = vs.getPixels(0, 0);
|
2004-11-28 02:05:04 +00:00
|
|
|
|
|
|
|
_actorX += _vm->virtscr[0].xstart & 7;
|
|
|
|
_out.w = _out.pitch;
|
|
|
|
_out.pixels = (byte *)_out.pixels - (_vm->virtscr[0].xstart & 7);
|
2004-06-29 05:36:01 +00:00
|
|
|
|
2004-09-24 21:36:04 +00:00
|
|
|
_numStrips = numStrips;
|
2004-01-05 16:19:14 +00:00
|
|
|
|
2003-07-13 02:45:31 +00:00
|
|
|
if (_vm->_version == 1) {
|
|
|
|
_xmove = 0;
|
|
|
|
_ymove = 0;
|
|
|
|
} else if (_vm->_features & GF_OLD_BUNDLE) {
|
2003-05-29 10:31:05 +00:00
|
|
|
_xmove = -72;
|
|
|
|
_ymove = -100;
|
|
|
|
} else {
|
|
|
|
_xmove = _ymove = 0;
|
|
|
|
}
|
|
|
|
for (i = 0; i < 16; i++)
|
2004-09-08 21:14:12 +00:00
|
|
|
result |= drawLimb(a, i);
|
2003-05-29 10:31:05 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-11-25 23:36:02 +00:00
|
|
|
void BaseCostumeRenderer::codec1_ignorePakCols(Codec1 &v1, int num) {
|
2003-07-13 10:35:05 +00:00
|
|
|
num *= _height;
|
2003-05-29 10:31:05 +00:00
|
|
|
|
|
|
|
do {
|
2003-07-08 17:42:11 +00:00
|
|
|
v1.replen = *_srcptr++;
|
|
|
|
v1.repcolor = v1.replen >> v1.shr;
|
|
|
|
v1.replen &= v1.mask;
|
|
|
|
|
|
|
|
if (!v1.replen)
|
2003-05-29 10:31:05 +00:00
|
|
|
v1.replen = *_srcptr++;
|
2003-07-08 17:42:11 +00:00
|
|
|
|
2003-05-29 10:31:05 +00:00
|
|
|
do {
|
2003-07-13 10:35:05 +00:00
|
|
|
if (!--num)
|
2003-05-29 10:31:05 +00:00
|
|
|
return;
|
|
|
|
} while (--v1.replen);
|
|
|
|
} while (1);
|
|
|
|
}
|
2003-10-03 18:33:57 +00:00
|
|
|
|
2004-01-05 16:19:14 +00:00
|
|
|
bool ScummEngine::isCostumeInUse(int cost) const {
|
|
|
|
int i;
|
|
|
|
Actor *a;
|
|
|
|
|
|
|
|
if (_roomResource != 0)
|
|
|
|
for (i = 1; i < _numActors; i++) {
|
|
|
|
a = derefActor(i);
|
2005-03-11 01:10:06 +00:00
|
|
|
if (a->isInCurrentRoom() && a->_costume == cost)
|
2004-01-05 16:19:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|