Ticket #3733: WoodruffGoblinDebug.patch

File WoodruffGoblinDebug.patch, 968 bytes (added by DrMcCoy, 16 years ago)

Some walking code debug output

  • goblin.cpp

     
    18441844        animData->destX = destX;
    18451845        animData->destY = destY;
    18461846
     1847        warning("Goblin::move(%d, %d, %d)", destX, destY, objIndex);
     1848
    18471849        if (animData->isBusy != 0) {
    18481850                if ((destX == -1) && (destY == -1)) {
    18491851                        mouseX = _vm->_global->_inter_mouseX;
     
    18541856                        gobDestX = mouseX / _vm->_map->_tilesWidth;
    18551857                        gobDestY = mouseY / _vm->_map->_tilesHeight;
    18561858
     1859                        warning("-> %d+%d, %d+%d, %dx%d, %d+%d, %d (%d, %d)",
     1860                                        _vm->_global->_inter_mouseX, _vm->_global->_inter_mouseY,
     1861                                        mouseX, mouseY, _vm->_map->_tilesWidth, _vm->_map->_tilesHeight,
     1862                                        gobDestX, gobDestY, _vm->_map->getPass(gobDestX, gobDestY),
     1863                                        _vm->_map->_passWidth, _vm->_map->_mapWidth);
     1864
    18571865                        if (_vm->_map->getPass(gobDestX, gobDestY) == 0)
    18581866                                _vm->_map->findNearestWalkable(gobDestX, gobDestY, mouseX, mouseY);
    18591867