diff options
| -rw-r--r-- | engines/fullpipe/gfx.cpp | 6 | ||||
| -rw-r--r-- | engines/fullpipe/scene.cpp | 4 | ||||
| -rw-r--r-- | engines/fullpipe/statics.cpp | 12 | 
3 files changed, 9 insertions, 13 deletions
| diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index fba7e402d2..a4dbc30669 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -596,7 +596,7 @@ void Picture::draw(int x, int y, int style, int angle) {  	int x1 = x;  	int y1 = y; -	debug(0, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename); +	debug(7, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename);  	if (x != -1)  		x1 = x; @@ -611,7 +611,7 @@ void Picture::draw(int x, int y, int style, int angle) {  		return;  	if ((_alpha & 0xff) < 0xff) { -		debug(0, "Picture:draw: alpha = %0x", _alpha); +		debug(7, "Picture:draw: alpha = %0x", _alpha);  	}  	byte *pal = _paletteData; @@ -783,7 +783,7 @@ bool Bitmap::isPixelAtHitPosRB(int x, int y) {  }  void Bitmap::putDib(int x, int y, int32 *palette) { -	debug(0, "Bitmap::putDib(%d, %d)", x, y); +	debug(7, "Bitmap::putDib(%d, %d)", x, y);  	_x = x - g_fullpipe->_sceneRect.left;  	_y = y - g_fullpipe->_sceneRect.top; diff --git a/engines/fullpipe/scene.cpp b/engines/fullpipe/scene.cpp index 3831831866..78c58bdea8 100644 --- a/engines/fullpipe/scene.cpp +++ b/engines/fullpipe/scene.cpp @@ -447,7 +447,7 @@ void Scene::objectList_sortByPriority(PtrList &list) {  }  void Scene::draw() { -	debug(0, ">>>>> Scene::draw()"); +	debug(6, ">>>>> Scene::draw()");  	updateScrolling();  	drawContent(60000, 0, true); @@ -525,7 +525,7 @@ int Scene::getPictureObjectIdAtPos(int x, int y) {  }  void Scene::update(int counterdiff) { -	debug(0, "Scene::update(%d)", counterdiff); +	debug(6, "Scene::update(%d)", counterdiff);  	for (PtrList::iterator s = _staticANIObjectList2.begin(); s != _staticANIObjectList2.end(); ++s)  		((StaticANIObject *)*s)->update(counterdiff); diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp index b82875f638..8324e0f322 100644 --- a/engines/fullpipe/statics.cpp +++ b/engines/fullpipe/statics.cpp @@ -496,7 +496,7 @@ void StaticANIObject::draw() {  	Common::Point point;  	Common::Rect rect; -	debug(0, "StaticANIObject::draw() (%s) [%d] [%d, %d]", transCyrillic((byte *)_objectName), _id, _ox, _oy); +	debug(6, "StaticANIObject::draw() (%s) [%d] [%d, %d]", transCyrillic((byte *)_objectName), _id, _ox, _oy);  	if (_shadowsOn && g_fullpipe->_currentScene && g_fullpipe->_currentScene->_shadows  		&& (getCurrDimensions(point)->x != 1 || getCurrDimensions(point)->y != 1)) { @@ -556,7 +556,7 @@ void StaticANIObject::draw() {  }  void StaticANIObject::draw2() { -	debug(0, "StatciANIObject::draw2(): id: (%s) %d [%d, %d]", transCyrillic((byte *)_objectName), _id, _ox, _oy); +	debug(6, "StatciANIObject::draw2(): id: (%s) %d [%d, %d]", transCyrillic((byte *)_objectName), _id, _ox, _oy);  	if ((_flags & 4) && (_flags & 0x10)) {  		if (_movement) { @@ -891,7 +891,7 @@ void StaticANIObject::hide() {  }  void StaticANIObject::show1(int x, int y, int movId, int mqId) { -	debug(0, "StaticANIObject::show1(%d, %d, %d, %d)", x, y, movId, mqId); +	debug(6, "StaticANIObject::show1(%d, %d, %d, %d)", x, y, movId, mqId);  	if (_messageQueueId)  		return; @@ -998,20 +998,17 @@ bool StaticANIObject::startAnim(int movementId, int messageQueueId, int dynPhase  	int newy = _oy;  	Common::Point point; -	debug(0, "0 %d %d", newx, newy);  	if (_movement) {  		_movement->getCurrDynamicPhaseXY(point);  		newx -= point.x;  		newy -= point.y; -		debug(0, "1 %d %d", newx, newy);  	} else if (_statics) {  		_statics->getSomeXY(point);  		newx -= point.x;  		newy -= point.y; -		debug(0, "2 %d %d - %d %d assa", newx, newy, point.x, point.y);  	}  	_movement = mov; @@ -1029,7 +1026,6 @@ bool StaticANIObject::startAnim(int movementId, int messageQueueId, int dynPhase  			newx += point.x + _movement->_mx;  			newy += point.y + _movement->_my; -			debug(0, "3 %d %d", newx, newy);  			_stepArray.gotoNextPoint();  			ExCommand *ex = _movement->_currDynamicPhase->getExCommand(); @@ -1794,7 +1790,7 @@ DynamicPhase::DynamicPhase(DynamicPhase *src, bool reverse) {  	_field_7E = 0;  	_rect = new Common::Rect(); -	debug(0, "DynamicPhase::DynamicPhase(src, %d)", reverse); +	debug(1, "DynamicPhase::DynamicPhase(src, %d)", reverse);  	if (reverse) {  		if (!src->_bitmap) | 
