aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/movesens.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/movesens.cpp')
-rw-r--r--engines/dm/movesens.cpp1094
1 files changed, 991 insertions, 103 deletions
diff --git a/engines/dm/movesens.cpp b/engines/dm/movesens.cpp
index 9fab510ecf..70f8cc8220 100644
--- a/engines/dm/movesens.cpp
+++ b/engines/dm/movesens.cpp
@@ -31,6 +31,10 @@
#include "inventory.h"
#include "dungeonman.h"
#include "objectman.h"
+#include "timeline.h"
+#include "group.h"
+#include "projexpl.h"
+#include "text.h"
namespace DM {
@@ -38,158 +42,1042 @@ namespace DM {
MovesensMan::MovesensMan(DMEngine* vm) : _vm(vm) {}
bool MovesensMan::f275_sensorIsTriggeredByClickOnWall(int16 mapX, int16 mapY, uint16 cellParam) {
- ChampionMan &champMan = *_vm->_championMan;
- DungeonMan &dunMan = *_vm->_dungeonMan;
- ObjectMan &objMan = *_vm->_objectMan;
-
-
- bool atLeastOneSensorWasTriggered = false;
- Thing leaderHandObject = champMan._g414_leaderHandObject;
- int16 sensorCountToProcessPerCell[4];
- uint16 cell;
- for (cell = k0_CellNorthWest; cell < k3_CellSouthWest; ++cell) {
- sensorCountToProcessPerCell[cell] = 0;
- }
- Thing squareFirstThing;
- Thing thingBeingProcessed = squareFirstThing = dunMan.f161_getSquareFirstThing(mapX, mapY);
- ThingType thingType;
- while (thingBeingProcessed != Thing::_endOfList) {
- thingType = thingBeingProcessed.getType();
- if (thingType == k3_SensorThingType) {
- sensorCountToProcessPerCell[thingBeingProcessed.getCell()]++;
- } else if (thingType >= k4_GroupThingType) {
- break;
+ Thing L0750_T_ThingBeingProcessed;
+ uint16 L0751_ui_ThingType;
+ uint16 L0752_ui_Cell;
+ bool L0753_B_DoNotTriggerSensor;
+ Thing* L0754_ps_Generic;
+ Sensor* L0755_ps_Sensor;
+ int16 L0756_i_SensorEffect;
+ uint16 L0757_ui_SensorType;
+ int16 L0758_i_SensorData;
+ bool L0759_B_AtLeastOneSensorWasTriggered;
+ int16 L0760_ai_SensorCountToProcessPerCell[4];
+ Thing L0761_T_LeaderHandObject;
+ Thing L0762_T_ThingOnSquare;
+ Thing L0763_T_LastProcessedThing;
+ Thing L0764_T_SquareFirstThing;
+ Sensor* L0765_ps_Sensor;
+
+
+ L0759_B_AtLeastOneSensorWasTriggered = false;
+ L0761_T_LeaderHandObject = _vm->_championMan->_g414_leaderHandObject;
+ for (L0752_ui_Cell = k0_CellNorthWest; L0752_ui_Cell < k3_CellSouthWest + 1; L0752_ui_Cell++) {
+ L0760_ai_SensorCountToProcessPerCell[L0752_ui_Cell] = 0;
+ }
+ L0764_T_SquareFirstThing = L0750_T_ThingBeingProcessed = _vm->_dungeonMan->f161_getSquareFirstThing(mapX, mapY);
+ while (L0750_T_ThingBeingProcessed != Thing::_endOfList) {
+ if ((L0751_ui_ThingType = (L0750_T_ThingBeingProcessed).getType()) == k3_SensorThingType) {
+ L0760_ai_SensorCountToProcessPerCell[(L0750_T_ThingBeingProcessed).getCell()]++;
+ } else {
+ if (L0751_ui_ThingType >= k4_GroupThingType)
+ break;
}
- thingBeingProcessed = dunMan.f159_getNextThing(thingBeingProcessed);
+ L0750_T_ThingBeingProcessed = _vm->_dungeonMan->f159_getNextThing(L0750_T_ThingBeingProcessed);
}
- Thing lastProcessedThing = thingBeingProcessed = squareFirstThing;
-
- while (thingBeingProcessed != Thing::_endOfList) {
- thingType = thingBeingProcessed.getType();
- if (thingType == k3_SensorThingType) {
- cell = thingBeingProcessed.getCell();
- sensorCountToProcessPerCell[cell]--;
- Sensor *sensor = (Sensor*)dunMan.f156_getThingData(thingBeingProcessed); // IF YOU CHECK ME, I'LL CALL THE COPS!
- SensorType sensorType = sensor->getType();
- if (sensorType == k0_SensorDisabled)
+ L0763_T_LastProcessedThing = L0750_T_ThingBeingProcessed = L0764_T_SquareFirstThing;
+ while (L0750_T_ThingBeingProcessed != Thing::_endOfList) {
+ if ((L0751_ui_ThingType = (L0750_T_ThingBeingProcessed).getType()) == k3_SensorThingType) {
+ L0760_ai_SensorCountToProcessPerCell[L0752_ui_Cell = (L0750_T_ThingBeingProcessed).getCell()]--;
+ L0755_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0750_T_ThingBeingProcessed);
+ if ((L0757_ui_SensorType = (L0755_ps_Sensor)->getType()) == k0_SensorDisabled)
goto T0275058_ProceedToNextThing;
- if ((champMan._g411_leaderIndex == kM1_ChampionNone) && (sensorType != k127_SensorWallChampionPortrait))
+ if ((_vm->_championMan->_g411_leaderIndex == kM1_ChampionNone) && (L0757_ui_SensorType != k127_SensorWallChampionPortrait))
goto T0275058_ProceedToNextThing;
- if (cell != cellParam)
+ if (L0752_ui_Cell != cellParam)
goto T0275058_ProceedToNextThing;
- int16 sensorData = sensor->getData();
- int16 sensorEffect = sensor->getEffectA();
- bool doNotTriggerSensor;
- switch (sensorType) {
+ L0758_i_SensorData = L0755_ps_Sensor->getData();
+ L0756_i_SensorEffect = L0755_ps_Sensor->getEffectA();
+ switch (L0757_ui_SensorType) {
case k1_SensorWallOrnClick:
- doNotTriggerSensor = false;
- if (sensor->getEffectA() == k3_SensorEffHold) {
+ L0753_B_DoNotTriggerSensor = false;
+ if (L0755_ps_Sensor->getEffectA() == k3_SensorEffHold) {
goto T0275058_ProceedToNextThing;
}
break;
case k2_SensorWallOrnClickWithAnyObj:
- doNotTriggerSensor = (champMan._g415_leaderEmptyHanded != sensor->getRevertEffectA());
+ L0753_B_DoNotTriggerSensor = (_vm->_championMan->_g415_leaderEmptyHanded != L0755_ps_Sensor->getRevertEffectA());
break;
case k17_SensorWallOrnClickWithSpecObjRemovedSensor:
case k11_SensorWallOrnClickWithSpecObjRemovedRotateSensors:
- if (sensorCountToProcessPerCell[cell])
+ if (L0760_ai_SensorCountToProcessPerCell[L0752_ui_Cell]) /* If the sensor is not the last one of its type on the cell */
goto T0275058_ProceedToNextThing;
case k3_SensorWallOrnClickWithSpecObj:
case k4_SensorWallOrnClickWithSpecObjRemoved:
- doNotTriggerSensor = ((sensorData == objMan.f32_getObjectType(leaderHandObject)) == sensor->getRevertEffectA());
- if (!doNotTriggerSensor && (sensorType == k17_SensorWallOrnClickWithSpecObjRemovedSensor)) {
- if (lastProcessedThing == thingBeingProcessed)
+ L0753_B_DoNotTriggerSensor = ((L0758_i_SensorData == _vm->_objectMan->f32_getObjectType(L0761_T_LeaderHandObject)) == L0755_ps_Sensor->getRevertEffectA());
+ if (!L0753_B_DoNotTriggerSensor && (L0757_ui_SensorType == k17_SensorWallOrnClickWithSpecObjRemovedSensor)) {
+ if (L0763_T_LastProcessedThing == L0750_T_ThingBeingProcessed) /* If the sensor is the only one of its type on the cell */
break;
- ((Sensor*)dunMan.f156_getThingData(lastProcessedThing))->setNextThing(sensor->getNextThing());
- sensor->setNextThing(Thing::_none);
- thingBeingProcessed = lastProcessedThing;
+ L0765_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0763_T_LastProcessedThing);
+ L0765_ps_Sensor->setNextThing(L0755_ps_Sensor->getNextThing());
+ L0755_ps_Sensor->setNextThing(Thing::_none);
+ L0750_T_ThingBeingProcessed = L0763_T_LastProcessedThing;
}
- if (!doNotTriggerSensor && (sensorType == k11_SensorWallOrnClickWithSpecObjRemovedRotateSensors)) {
- warning("MISSING CODE: F0270_SENSOR_TriggerLocalEffect");
+ if (!L0753_B_DoNotTriggerSensor && (L0757_ui_SensorType == k11_SensorWallOrnClickWithSpecObjRemovedRotateSensors)) {
+ f270_sensorTriggetLocalEffect(k2_SensorEffToggle, mapX, mapY, L0752_ui_Cell); /* This will cause a rotation of the sensors at the specified cell on the specified square after all sensors have been processed */
}
break;
case k12_SensorWallObjGeneratorRotateSensors:
- if (sensorCountToProcessPerCell[cell])
+ if (L0760_ai_SensorCountToProcessPerCell[L0752_ui_Cell]) /* If the sensor is not the last one of its type on the cell */
goto T0275058_ProceedToNextThing;
- doNotTriggerSensor = !champMan._g415_leaderEmptyHanded;
- if (!doNotTriggerSensor) {
- warning("MISSING CODE: F0270_SENSOR_TriggerLocalEffect");
+ L0753_B_DoNotTriggerSensor = !_vm->_championMan->_g415_leaderEmptyHanded;
+ if (!L0753_B_DoNotTriggerSensor) {
+ f270_sensorTriggetLocalEffect(k2_SensorEffToggle, mapX, mapY, L0752_ui_Cell); /* This will cause a rotation of the sensors at the specified cell on the specified square after all sensors have been processed */
}
break;
case k13_SensorWallSingleObjStorageRotateSensors:
- if (champMan._g415_leaderEmptyHanded) {
- warning("MISSING CODE: F0273_SENSOR_GetObjectOfTypeInCell");
- warning("MISSING CODE: F0164_DUNGEON_UnlinkThingFromList");
- warning("MISSING CODE: F0297_CHAMPION_PutObjectInLeaderHand");
+ if (_vm->_championMan->_g415_leaderEmptyHanded) {
+ if ((L0761_T_LeaderHandObject = f273_sensorGetObjectOfTypeInCell(mapX, mapY, L0752_ui_Cell, L0758_i_SensorData)) == Thing::_none)
+ goto T0275058_ProceedToNextThing;
+ _vm->_dungeonMan->f164_unlinkThingFromList(L0761_T_LeaderHandObject, Thing(0), mapX, mapY);
+ _vm->_championMan->f297_putObjectInLeaderHand(L0761_T_LeaderHandObject, true);
} else {
- warning("MISSING CODE: F0273_SENSOR_GetObjectOfTypeInCell");
- warning(("MISSING CODE: F0298_CHAMPION_GetObjectRemovedFromLeaderHand"));
- warning("MISSING CODE: F0163_DUNGEON_LinkThingToList");
- leaderHandObject = Thing::_none;
- }
- warning("MISSING CODE: F0270_SENSOR_TriggerLocalEffect");
- if ((sensorEffect == k3_SensorEffHold) && !champMan._g415_leaderEmptyHanded) {
- doNotTriggerSensor = true;
+ if ((_vm->_objectMan->f32_getObjectType(L0761_T_LeaderHandObject) != L0758_i_SensorData) || (f273_sensorGetObjectOfTypeInCell(mapX, mapY, L0752_ui_Cell, L0758_i_SensorData) != Thing::_none))
+ goto T0275058_ProceedToNextThing;
+ _vm->_championMan->f298_getObjectRemovedFromLeaderHand();
+ _vm->_dungeonMan->f163_linkThingToList(M15_thingWithNewCell(L0761_T_LeaderHandObject, L0752_ui_Cell), Thing(0), mapX, mapY);
+ L0761_T_LeaderHandObject = Thing::_none;
+ }
+ f270_sensorTriggetLocalEffect(k2_SensorEffToggle, mapX, mapY, L0752_ui_Cell); /* This will cause a rotation of the sensors at the specified cell on the specified square after all sensors have been processed */
+ if ((L0756_i_SensorEffect == k3_SensorEffHold) && !_vm->_championMan->_g415_leaderEmptyHanded) {
+ L0753_B_DoNotTriggerSensor = true;
} else {
- doNotTriggerSensor = false;
+ L0753_B_DoNotTriggerSensor = false;
}
break;
- case k16_SensorWallObjExchanger: {
- if (sensorCountToProcessPerCell[cell])
+ case k16_SensorWallObjExchanger:
+ if (L0760_ai_SensorCountToProcessPerCell[L0752_ui_Cell]) /* If the sensor is not the last one of its type on the cell */
goto T0275058_ProceedToNextThing;
- Thing thingOnSquare = dunMan.f161_getSquareFirstThing(mapX, mapY);
- if ((objMan.f32_getObjectType(leaderHandObject) != sensorData) || (thingOnSquare == Thing::_none))
+ L0762_T_ThingOnSquare = _vm->_dungeonMan->f162_getSquareFirstObject(mapX, mapY);
+ if ((_vm->_objectMan->f32_getObjectType(L0761_T_LeaderHandObject) != L0758_i_SensorData) || (L0762_T_ThingOnSquare == Thing::_none))
goto T0275058_ProceedToNextThing;
- warning("MISSING CODE: F0164_DUNGEON_UnlinkThingFromList");
- warning("MISSING CODE: F0298_CHAMPION_GetObjectRemovedFromLeaderHand");
- warning("MISSING CODE: F0163_DUNGEON_LinkThingToList");
- warning("MISSING CODE: F0297_CHAMPION_PutObjectInLeaderHand");
- doNotTriggerSensor = false;
+ _vm->_dungeonMan->f164_unlinkThingFromList(L0762_T_ThingOnSquare, Thing(0), mapX, mapY);
+ _vm->_championMan->f298_getObjectRemovedFromLeaderHand();
+ _vm->_dungeonMan->f163_linkThingToList(M15_thingWithNewCell(L0761_T_LeaderHandObject, L0752_ui_Cell), Thing(0), mapX, mapY);
+ _vm->_championMan->f297_putObjectInLeaderHand(L0762_T_ThingOnSquare, true);
+ L0753_B_DoNotTriggerSensor = false;
break;
- }
case k127_SensorWallChampionPortrait:
- champMan.f280_addCandidateChampionToParty(sensorData);
+ _vm->_championMan->f280_addCandidateChampionToParty(L0758_i_SensorData);
goto T0275058_ProceedToNextThing;
default:
goto T0275058_ProceedToNextThing;
}
-
- if (sensorEffect == k3_SensorEffHold) {
- sensorEffect = doNotTriggerSensor ? k1_SensorEffClear : k0_SensorEffSet;
- doNotTriggerSensor = false;
+ if (L0756_i_SensorEffect == k3_SensorEffHold) {
+ L0756_i_SensorEffect = L0753_B_DoNotTriggerSensor ? k1_SensorEffClear : k0_SensorEffSet;
+ L0753_B_DoNotTriggerSensor = false;
}
-
- if (!doNotTriggerSensor) {
- atLeastOneSensorWasTriggered = true;
- if (sensor->getAudibleA()) {
+ if (!L0753_B_DoNotTriggerSensor) {
+ L0759_B_AtLeastOneSensorWasTriggered = true;
+ if (L0755_ps_Sensor->getAudibleA()) {
warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
}
- if (!champMan._g415_leaderEmptyHanded &&
- ((sensorType == k4_SensorWallOrnClickWithSpecObjRemoved) ||
- (sensorType == k11_SensorWallOrnClickWithSpecObjRemovedRotateSensors) ||
- (sensorType == k17_SensorWallOrnClickWithSpecObjRemovedSensor))) {
-
- *((Thing*)dunMan.f156_getThingData(leaderHandObject)) = Thing::_none;
- warning("MISSING CODE: F0298_CHAMPION_GetObjectRemovedFromLeaderHand");
- leaderHandObject = Thing::_none;
+ if (!_vm->_championMan->_g415_leaderEmptyHanded && ((L0757_ui_SensorType == k4_SensorWallOrnClickWithSpecObjRemoved) || (L0757_ui_SensorType == k11_SensorWallOrnClickWithSpecObjRemovedRotateSensors) || (L0757_ui_SensorType == k17_SensorWallOrnClickWithSpecObjRemovedSensor))) {
+ L0754_ps_Generic = (Thing*)_vm->_dungeonMan->f156_getThingData(L0761_T_LeaderHandObject);
+ *L0754_ps_Generic = Thing::_none;
+ _vm->_championMan->f298_getObjectRemovedFromLeaderHand();
+ L0761_T_LeaderHandObject = Thing::_none;
} else {
- warning("MISSING CODE: (leaderHandObject = F0167_DUNGEON_GetObjectForProjectileLauncherOrObjectGenerator(sensorData)");
- if (champMan._g415_leaderEmptyHanded && (sensorType == k12_SensorWallObjGeneratorRotateSensors) && (leaderHandObject != Thing::_none)) {
- warning("MISSING CODE: F0297_CHAMPION_PutObjectInLeaderHand");
+ if (_vm->_championMan->_g415_leaderEmptyHanded &&
+ (L0757_ui_SensorType == k12_SensorWallObjGeneratorRotateSensors) &&
+ ((L0761_T_LeaderHandObject = _vm->_dungeonMan->f167_getObjForProjectileLaucherOrObjGen(L0758_i_SensorData)) != Thing::_none)) {
+ _vm->_championMan->f297_putObjectInLeaderHand(L0761_T_LeaderHandObject, true);
}
}
- warning("MISSING CODE: F0272_SENSOR_TriggerEffect");
+ f272_sensorTriggerEffect(L0755_ps_Sensor, L0756_i_SensorEffect, mapX, mapY, L0752_ui_Cell);
}
goto T0275058_ProceedToNextThing;
}
- if (thingType >= k4_GroupThingType)
+ if (L0751_ui_ThingType >= k4_GroupThingType)
break;
T0275058_ProceedToNextThing:
- lastProcessedThing = thingBeingProcessed;
- thingBeingProcessed = dunMan.f159_getNextThing(thingBeingProcessed);
+ L0763_T_LastProcessedThing = L0750_T_ThingBeingProcessed;
+ L0750_T_ThingBeingProcessed = _vm->_dungeonMan->f159_getNextThing(L0750_T_ThingBeingProcessed);
+ }
+ f271_processRotationEffect();
+ return L0759_B_AtLeastOneSensorWasTriggered;
+}
+
+bool MovesensMan::f267_getMoveResult(Thing thing, int16 mapX, int16 mapY, int16 destMapX, int16 destMapY) {
+ int16 L0708_i_Multiple = 0;
+#define AL0708_i_DestinationSquare L0708_i_Multiple
+#define AL0708_i_ScentIndex L0708_i_Multiple
+#define AL0708_i_ActiveGroupIndex L0708_i_Multiple
+ int16 L0709_i_Multiple;
+#define AL0709_i_DestinationSquareType L0709_i_Multiple
+#define AL0709_i_ChampionIndex L0709_i_Multiple
+ int16 L0710_i_ThingType;
+ Champion* L0711_ps_Champion;
+ Teleporter* L0712_ps_Teleporter;
+ bool L0713_B_ThingLevitates;
+ uint16 L0714_ui_MapIndexSource = 0;
+ uint16 L0715_ui_MapIndexDestination = 0;
+ uint16 L0716_ui_Direction = 0;
+ uint16 L0717_ui_ThingCell = 0;
+ int16 L0718_i_RequiredTeleporterScope;
+ // Strangerke: Only present in v2.1, but it fixes a bug, so I propose to keep it
+ int16 L0719_i_TraversedPitCount;
+ uint16 L0720_ui_MoveGroupResult;
+ bool L0721_B_GroupOnPartyMap;
+ bool L0722_B_FallKilledGroup;
+ bool L0723_B_DrawDungeonViewWhileFalling;
+ bool L0724_B_DestinationIsTeleporterTarget;
+ bool L0725_B_PartySquare;
+ bool L0726_B_Audible;
+ uint16 L0727_ui_Multiple;
+#define AL0727_ui_ThingCell L0727_ui_Multiple
+#define AL0727_ui_Outcome L0727_ui_Multiple
+#define AL0727_ui_Backup L0727_ui_Multiple
+ int16 L0728_i_ChainedMoveCount;
+ uint16 L1638_ui_MovementSoundIndex;
+
+ L0710_i_ThingType = kM1_PartyThingType;
+ L0713_B_ThingLevitates = false;
+ L0719_i_TraversedPitCount = 0;
+ L0720_ui_MoveGroupResult = 0;
+ L0721_B_GroupOnPartyMap = false;
+ L0722_B_FallKilledGroup = false;
+ L0723_B_DrawDungeonViewWhileFalling = false;
+ L0724_B_DestinationIsTeleporterTarget = false;
+ L0725_B_PartySquare = false;
+ L0726_B_Audible = false;
+ if (thing != Thing::_party) {
+ L0710_i_ThingType = (thing).getType();
+ L0717_ui_ThingCell = (thing).getCell();
+ L0713_B_ThingLevitates = f264_isLevitating(thing);
+ }
+ /* If moving the party or a creature on the party map from a dungeon square then check for a projectile impact */
+ if ((mapX >= 0) && ((thing == Thing::_party) || ((L0710_i_ThingType == k4_GroupThingType) && (_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex)))) {
+ if (f266_moveIsKilledByProjectileImpact(mapX, mapY, destMapX, destMapY, thing)) {
+ return true; /* The specified group thing cannot be moved because it was killed by a projectile impact */
+ }
+ }
+ if (destMapX >= 0) {
+ L0714_ui_MapIndexSource = L0715_ui_MapIndexDestination = _vm->_dungeonMan->_g272_currMapIndex;
+ L0721_B_GroupOnPartyMap = (L0714_ui_MapIndexSource == _vm->_dungeonMan->_g309_partyMapIndex) && (mapX >= 0);
+ if (thing == Thing::_party) {
+ _vm->_dungeonMan->_g306_partyMapX = destMapX;
+ _vm->_dungeonMan->_g307_partyMapY = destMapY;
+ L0718_i_RequiredTeleporterScope = k0x0002_TelepScopeObjOrParty;
+ L0723_B_DrawDungeonViewWhileFalling = !_vm->_inventoryMan->_g432_inventoryChampionOrdinal && !_vm->_championMan->_g300_partyIsSleeping;
+ L0716_ui_Direction = _vm->_dungeonMan->_g308_partyDir;
+ } else {
+ if (L0710_i_ThingType == k4_GroupThingType) {
+ L0718_i_RequiredTeleporterScope = k0x0001_TelepScopeCreatures;
+ } else {
+ L0718_i_RequiredTeleporterScope = (k0x0001_TelepScopeCreatures | k0x0002_TelepScopeObjOrParty);
+ }
+ }
+ if (L0710_i_ThingType == k14_ProjectileThingType) {
+ L0712_ps_Teleporter = (Teleporter*)_vm->_dungeonMan->f156_getThingData(thing);
+ _g400_moveResultDir = (_vm->_timeline->_g370_events[((Projectile*)L0712_ps_Teleporter)->_eventIndex])._C._projectile.getDir();
+ }
+ for (L0728_i_ChainedMoveCount = 1000; --L0728_i_ChainedMoveCount; ) { /* No more than 1000 chained moves at once (in a chain of teleporters and pits for example) */
+ AL0708_i_DestinationSquare = _vm->_dungeonMan->_g271_currMapData[destMapX][destMapY];
+ if ((AL0709_i_DestinationSquareType = Square(AL0708_i_DestinationSquare).getType()) == k5_ElementTypeTeleporter) {
+ if (!getFlag(AL0708_i_DestinationSquare, k0x0008_TeleporterOpen))
+ break;
+ L0712_ps_Teleporter = (Teleporter*)_vm->_dungeonMan->f157_getSquareFirstThingData(destMapX, destMapY);
+ if ((L0712_ps_Teleporter->getScope() == k0x0001_TelepScopeCreatures) && (L0710_i_ThingType != k4_GroupThingType))
+ break;
+ if ((L0718_i_RequiredTeleporterScope != (k0x0001_TelepScopeCreatures | k0x0002_TelepScopeObjOrParty)) && !getFlag(L0712_ps_Teleporter->getScope(), L0718_i_RequiredTeleporterScope))
+ break;
+ L0724_B_DestinationIsTeleporterTarget = (destMapX == L0712_ps_Teleporter->getTargetMapX()) && (destMapY == L0712_ps_Teleporter->getTargetMapY()) && (L0715_ui_MapIndexDestination == L0712_ps_Teleporter->getTargetMapIndex());
+ destMapX = L0712_ps_Teleporter->getTargetMapX();
+ destMapY = L0712_ps_Teleporter->getTargetMapY();
+ L0726_B_Audible = L0712_ps_Teleporter->isAudible();
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination = L0712_ps_Teleporter->getTargetMapIndex());
+ if (thing == Thing::_party) {
+ _vm->_dungeonMan->_g306_partyMapX = destMapX;
+ _vm->_dungeonMan->_g307_partyMapY = destMapY;
+ if (L0712_ps_Teleporter->isAudible()) {
+ warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
+ }
+ L0723_B_DrawDungeonViewWhileFalling = true;
+ if (L0712_ps_Teleporter->getAbsoluteRotation()) {
+ _vm->_championMan->f284_setPartyDirection(L0712_ps_Teleporter->getRotation());
+ } else {
+ _vm->_championMan->f284_setPartyDirection(M21_normalizeModulo4(_vm->_dungeonMan->_g308_partyDir + L0712_ps_Teleporter->getRotation()));
+ }
+ } else {
+ if (L0710_i_ThingType == k4_GroupThingType) {
+ if (L0712_ps_Teleporter->isAudible()) {
+ warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
+ }
+ L0720_ui_MoveGroupResult = f262_getTeleporterRotatedGroupResult(L0712_ps_Teleporter, thing, L0714_ui_MapIndexSource);
+ } else {
+ if (L0710_i_ThingType == k14_ProjectileThingType) {
+ thing = f263_getTeleporterRotatedProjectileThing(L0712_ps_Teleporter, thing);
+ } else {
+ if (!(L0712_ps_Teleporter->getAbsoluteRotation()) && (mapX != -2)) {
+ thing = M15_thingWithNewCell(thing, M21_normalizeModulo4((thing).getCell() + L0712_ps_Teleporter->getRotation()));
+ }
+ }
+ }
+ }
+ if (L0724_B_DestinationIsTeleporterTarget)
+ break;
+ } else {
+ if ((AL0709_i_DestinationSquareType == k2_ElementTypePit) && !L0713_B_ThingLevitates && getFlag(AL0708_i_DestinationSquare, k0x0008_PitOpen) && !getFlag(AL0708_i_DestinationSquare, k0x0001_PitImaginary)) {
+ if (L0723_B_DrawDungeonViewWhileFalling && !_g402_useRopeToClimbDownPit) {
+ L0723_B_DrawDungeonViewWhileFalling = true;
+ if (L0719_i_TraversedPitCount) {
+ _vm->_dungeonMan->f174_setCurrentMapAndPartyMap(L0715_ui_MapIndexDestination);
+ _vm->_displayMan->f96_loadCurrentMapGraphics();
+ }
+ L0719_i_TraversedPitCount++;
+ _vm->_displayMan->f128_drawDungeon(_vm->_dungeonMan->_g308_partyDir, destMapX, destMapY); /* BUG0_28 When falling through multiple pits the dungeon view is updated to show each traversed map but the graphics used for creatures, wall and floor ornaments may not be correct. The dungeon view is drawn for each map by using the graphics loaded for the source map. Therefore the graphics for creatures, wall and floor ornaments may not look like what they should */
+ /* BUG0_71 Some timings are too short on fast computers. When the party falls in a series of pits, the dungeon view is refreshed too quickly because the execution speed is not limited */
+ /* BUG0_01 While drawing creatures the engine will read invalid ACTIVE_GROUP data in _vm->_groupMan->_g375_activeGroups because the data is for the creatures on the source map and not the map being drawn. The only consequence is that creatures may be drawn with incorrect bitmaps and/or directions */
+ }
+ L0715_ui_MapIndexDestination = _vm->_dungeonMan->f154_getLocationAfterLevelChange(L0715_ui_MapIndexDestination, 1, &destMapX, &destMapY);
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ if (thing == Thing::_party) {
+ _vm->_dungeonMan->_g306_partyMapX = destMapX;
+ _vm->_dungeonMan->_g307_partyMapY = destMapY;
+ if (_vm->_championMan->_g305_partyChampionCount > 0) {
+ if (_g402_useRopeToClimbDownPit) {
+ for (AL0709_i_ChampionIndex = k0_ChampionFirst, L0711_ps_Champion = _vm->_championMan->_gK71_champions; AL0709_i_ChampionIndex < _vm->_championMan->_g305_partyChampionCount; AL0709_i_ChampionIndex++, L0711_ps_Champion++) {
+ if (L0711_ps_Champion->_currHealth) {
+ _vm->_championMan->f325_decrementStamine(AL0709_i_ChampionIndex, ((L0711_ps_Champion->_load * 25) / _vm->_championMan->f309_getMaximumLoad(L0711_ps_Champion)) + 1);
+ }
+ }
+ } else {
+ if (_vm->_championMan->f324_damageAll_getDamagedChampionCount(20, k0x0010_ChampionWoundLegs | k0x0020_ChampionWoundFeet, k2_attackType_SELF)) {
+ warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
+ }
+ }
+ }
+ _g402_useRopeToClimbDownPit = false;
+ } else {
+ if (L0710_i_ThingType == k4_GroupThingType) {
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ AL0727_ui_Outcome = _vm->_groupMan->f191_getDamageAllCreaturesOutcome((Group*)_vm->_dungeonMan->f156_getThingData(thing), mapX, mapY, 20, false);
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ if (L0722_B_FallKilledGroup = (AL0727_ui_Outcome == k2_outcomeKilledAllCreaturesInGroup))
+ break;
+ if (AL0727_ui_Outcome == k1_outcomeKilledSomeCreaturesInGroup) {
+ _vm->_groupMan->f187_dropMovingCreatureFixedPossession(thing, destMapX, destMapY);
+ }
+ }
+ }
+ } else {
+ if ((AL0709_i_DestinationSquareType == k3_ElementTypeStairs) && (thing != Thing::_party) && (L0710_i_ThingType != k14_ProjectileThingType)) {
+ if (!getFlag(AL0708_i_DestinationSquare, k0x0004_StairsUp)) {
+ L0715_ui_MapIndexDestination = _vm->_dungeonMan->f154_getLocationAfterLevelChange(L0715_ui_MapIndexDestination, 1, &destMapX, &destMapY);
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ }
+ L0716_ui_Direction = _vm->_dungeonMan->f155_getStairsExitDirection(destMapX, destMapY);
+ destMapX += _vm->_dirIntoStepCountEast[L0716_ui_Direction], destMapY += _vm->_dirIntoStepCountNorth[L0716_ui_Direction];
+ L0716_ui_Direction = returnOppositeDir((direction)L0716_ui_Direction);
+ AL0727_ui_ThingCell = (thing).getCell();
+ AL0727_ui_ThingCell = M21_normalizeModulo4((((AL0727_ui_ThingCell - L0716_ui_Direction + 1) & 0x0002) >> 1) + L0716_ui_Direction);
+ thing = M15_thingWithNewCell(thing, AL0727_ui_ThingCell);
+ } else
+ break;
+ }
+ }
+ }
+ if ((L0710_i_ThingType == k4_GroupThingType) && (L0722_B_FallKilledGroup || !_vm->_dungeonMan->f139_isCreatureAllowedOnMap(thing, L0715_ui_MapIndexDestination))) {
+ _vm->_groupMan->f187_dropMovingCreatureFixedPossession(thing, destMapX, destMapY);
+ _vm->_groupMan->f188_dropGroupPossessions(destMapX, destMapY, thing, k2_soundModePlayOneTickLater);
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ if (mapX >= 0) {
+ _vm->_groupMan->f189_delete(mapX, mapY);
+ }
+ return true; /* The specified group thing cannot be moved because it was killed by a fall or because it is not allowed on the destination map */
+ }
+ _g397_moveResultMapX = destMapX;
+ _g398_moveResultMapY = destMapY;
+ _g399_moveResultMapIndex = L0715_ui_MapIndexDestination;
+ _g401_moveResultCell = (thing).getCell();
+ L0725_B_PartySquare = (L0715_ui_MapIndexDestination == L0714_ui_MapIndexSource) && (destMapX == mapX) && (destMapY == mapY);
+ if (L0725_B_PartySquare) {
+ if (thing == Thing::_party) {
+ if (_vm->_dungeonMan->_g308_partyDir == L0716_ui_Direction) {
+ return false;
+ }
+ } else {
+ if ((_g401_moveResultCell == L0717_ui_ThingCell) && (L0710_i_ThingType != k14_ProjectileThingType)) {
+ return false;
+ }
+ }
+ } else {
+ if ((thing == Thing::_party) && _vm->_championMan->_g305_partyChampionCount) {
+ AL0727_ui_Backup = AL0708_i_DestinationSquare;
+ AL0708_i_ScentIndex = _vm->_championMan->_g407_party._scentCount;
+ while (AL0708_i_ScentIndex >= 24) {
+ _vm->_championMan->f316_deleteScent(0);
+ AL0708_i_ScentIndex--;
+ }
+ if (AL0708_i_ScentIndex) {
+ _vm->_championMan->f317_addScentStrength(mapX, mapY, (int)(_vm->_g313_gameTime - _vm->_projexpl->_g362_lastPartyMovementTime));
+ }
+ _vm->_projexpl->_g362_lastPartyMovementTime = _vm->_g313_gameTime;
+ _vm->_championMan->_g407_party._scentCount++;
+ if (_vm->_championMan->_g407_party._event79Count_Footprints) {
+ _vm->_championMan->_g407_party._lastScentIndex = _vm->_championMan->_g407_party._scentCount;
+ }
+ _vm->_championMan->_g407_party._scents[AL0708_i_ScentIndex].setMapX(destMapX);
+ _vm->_championMan->_g407_party._scents[AL0708_i_ScentIndex].setMapY(destMapY);
+ _vm->_championMan->_g407_party._scents[AL0708_i_ScentIndex].setMapIndex(L0715_ui_MapIndexDestination);
+ _vm->_championMan->_g407_party._scentStrengths[AL0708_i_ScentIndex] = 0;
+ _vm->_championMan->f317_addScentStrength(destMapX, destMapY, k0x8000_mergeCycles | 24);
+ AL0708_i_DestinationSquare = AL0727_ui_Backup;
+ }
+ if (L0715_ui_MapIndexDestination != L0714_ui_MapIndexSource) {
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ }
+ }
+ }
+ if (mapX >= 0) {
+ if (thing == Thing::_party) {
+ f276_sensorProcessThingAdditionOrRemoval(mapX, mapY, Thing::_party, L0725_B_PartySquare, false);
+ } else {
+ if (L0713_B_ThingLevitates) {
+ _vm->_dungeonMan->f164_unlinkThingFromList(thing, Thing(0), mapX, mapY);
+ } else {
+ f276_sensorProcessThingAdditionOrRemoval(mapX, mapY, thing, (_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (mapX == _vm->_dungeonMan->_g306_partyMapX) && (mapY == _vm->_dungeonMan->_g307_partyMapY), false);
+ }
+ }
+ }
+ if (destMapX >= 0) {
+ if (thing == Thing::_party) {
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ if ((thing = _vm->_groupMan->f175_groupGetThing(_vm->_dungeonMan->_g306_partyMapX, _vm->_dungeonMan->_g307_partyMapY)) != Thing::_endOfList) { /* Delete group if party moves onto its square */
+ _vm->_groupMan->f188_dropGroupPossessions(_vm->_dungeonMan->_g306_partyMapX, _vm->_dungeonMan->_g307_partyMapY, thing, k1_soundModePlayIfPrioritized);
+ _vm->_groupMan->f189_delete(_vm->_dungeonMan->_g306_partyMapX, _vm->_dungeonMan->_g307_partyMapY);
+ }
+ if (L0715_ui_MapIndexDestination == L0714_ui_MapIndexSource) {
+ f276_sensorProcessThingAdditionOrRemoval(_vm->_dungeonMan->_g306_partyMapX, _vm->_dungeonMan->_g307_partyMapY, Thing::_party, L0725_B_PartySquare, true);
+ } else {
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ _vm->_g327_newPartyMapIndex = L0715_ui_MapIndexDestination;
+ }
+ } else {
+ if (L0710_i_ThingType == k4_GroupThingType) {
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ L0712_ps_Teleporter = (Teleporter*)_vm->_dungeonMan->f156_getThingData(thing);
+ AL0708_i_ActiveGroupIndex = ((Group*)L0712_ps_Teleporter)->getActiveGroupIndex();
+ if (((L0715_ui_MapIndexDestination == _vm->_dungeonMan->_g309_partyMapIndex) && (destMapX == _vm->_dungeonMan->_g306_partyMapX) && (destMapY == _vm->_dungeonMan->_g307_partyMapY)) || (_vm->_groupMan->f175_groupGetThing(destMapX, destMapY) != Thing::_endOfList)) { /* If a group tries to move to the party square or over another group then create an event to move the group later */
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ if (mapX >= 0) {
+ _vm->_groupMan->f181_groupDeleteEvents(mapX, mapY);
+ }
+ if (L0721_B_GroupOnPartyMap) {
+ _vm->_groupMan->f184_removeActiveGroup(AL0708_i_ActiveGroupIndex);
+ }
+ f265_createEvent60to61_moveGroup(thing, destMapX, destMapY, L0715_ui_MapIndexDestination, L0726_B_Audible);
+ return true; /* The specified group thing cannot be moved because the party or another group is on the destination square */
+ }
+ L1638_ui_MovementSoundIndex = f514_getSound(((Group*)_vm->_dungeonMan->_g284_thingData[k4_GroupThingType])[(thing).getIndex()]._type);
+ if (L1638_ui_MovementSoundIndex < k34_D13_soundCount) {
+ warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
+ }
+ if (L0721_B_GroupOnPartyMap && (L0715_ui_MapIndexDestination != _vm->_dungeonMan->_g309_partyMapIndex)) { /* If the group leaves the party map */
+ _vm->_groupMan->f184_removeActiveGroup(AL0708_i_ActiveGroupIndex);
+ L0720_ui_MoveGroupResult = true;
+ } else {
+ if ((L0715_ui_MapIndexDestination == _vm->_dungeonMan->_g309_partyMapIndex) && (!L0721_B_GroupOnPartyMap)) { /* If the group arrives on the party map */
+ _vm->_groupMan->f183_addActiveGroup(thing, destMapX, destMapY);
+ L0720_ui_MoveGroupResult = true;
+ }
+ }
+ if (L0713_B_ThingLevitates) {
+ _vm->_dungeonMan->f163_linkThingToList(thing, Thing(0), destMapX, destMapY);
+ } else {
+ f276_sensorProcessThingAdditionOrRemoval(destMapX, destMapY, thing, false, true);
+ }
+ if (L0720_ui_MoveGroupResult || (mapX < 0)) { /* If group moved from one map to another or if it was just placed on a square */
+ _vm->_groupMan->f180_startWanedring(destMapX, destMapY);
+ }
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ if (mapX >= 0) {
+ if (L0720_ui_MoveGroupResult > 1) { /* If the group behavior was C6_BEHAVIOR_ATTACK before being teleported from and to the party map */
+ _vm->_groupMan->f182_stopAttacking(&_vm->_groupMan->_g375_activeGroups[L0720_ui_MoveGroupResult - 2], mapX, mapY);
+ } else {
+ if (L0720_ui_MoveGroupResult) { /* If the group was teleported or leaved the party map or entered the party map */
+ _vm->_groupMan->f181_groupDeleteEvents(mapX, mapY);
+ }
+ }
+ }
+ return L0720_ui_MoveGroupResult;
+ }
+ _vm->_dungeonMan->f173_setCurrentMap(L0715_ui_MapIndexDestination);
+ if (L0710_i_ThingType == k14_ProjectileThingType) { /* BUG0_29 An explosion can trigger a floor sensor. Explosions do not trigger floor sensors on the square where they are created. However, if an explosion is moved by a teleporter (or by falling into a pit, see BUG0_26) after it was created, it can trigger floor sensors on the destination square. This is because explosions are not considered as levitating in the code, while projectiles are. The condition here should be (L0713_B_ThingLevitates) so that explosions would not start sensor processing on their destination square as they should be Levitating. This would work if F0264_MOVE_IsLevitating returned true for explosions (see BUG0_26) */
+ _vm->_dungeonMan->f163_linkThingToList(thing, Thing(0), destMapX, destMapY);
+ } else {
+ f276_sensorProcessThingAdditionOrRemoval(destMapX, destMapY, thing, (_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (destMapX == _vm->_dungeonMan->_g306_partyMapX) && (destMapY == _vm->_dungeonMan->_g307_partyMapY), true);
+ }
+ _vm->_dungeonMan->f173_setCurrentMap(L0714_ui_MapIndexSource);
+ }
+ }
+ return false;
+}
+
+bool MovesensMan::f264_isLevitating(Thing thing) {
+ int16 L0695_i_ThingType;
+
+
+ if ((L0695_i_ThingType = (thing).getType()) == k4_GroupThingType) {
+ return getFlag(_vm->_dungeonMan->f144_getCreatureAttributes(thing), k0x0020_MaskCreatureInfo_levitation);
+ }
+ if (L0695_i_ThingType == k14_ProjectileThingType) { /* BUG0_26 An explosion may fall in a pit. If a pit is opened while there is an explosion above then the explosion falls into the pit in F0267_MOVE_GetMoveResult_CPSCE. Explosions are not considered as levitating so they are moved when the pit is opened. This function should return true for explosions */
+ return true;
+ }
+ return false;
+}
+
+bool MovesensMan::f266_moveIsKilledByProjectileImpact(int16 srcMapX, int16 srcMapY, int16 destMapX, int16 destMapY, Thing thing) {
+ Thing L0697_T_Thing;
+ uint16 L0699_ui_Multiple;
+#define AL0699_ui_Cell L0699_ui_Multiple
+#define AL0699_ui_PrimaryDirection L0699_ui_Multiple
+#define AL0699_ui_ChampionOrCreatureOrdinal L0699_ui_Multiple
+ int16 L0700_i_Multiple;
+#define AL0700_B_CreatureAlive L0700_i_Multiple
+#define AL0700_i_Distance L0700_i_Multiple
+#define AL0700_i_SecondaryDirection L0700_i_Multiple
+ Group* L0701_ps_Group;
+ int16 L0702_i_ImpactType;
+ bool L0703_B_CheckDestinationSquareProjectileImpacts;
+ uint16 L0704_ui_ProjectileMapX;
+ uint16 L0705_ui_ProjectileMapY;
+ byte L0706_auc_IntermediaryChampionOrCreatureOrdinalInCell[4]; /* This array is used only when moving between two adjacent squares and is used to test projectile impacts when the party or group is in the 'intermediary' step between the two squares. Without this test, in the example below no impact would be detected. In this example, the party moves from the source square on the left (which contains a single champion at cell 2) to the destination square on the right (which contains a single projectile at cell 3).
+ Party: Projectiles on target square: Incorrect result without the test for the intermediary step (the champion would have passed through the projectile without impact):
+ 00 -> 00 00
+ 01 P0 P1 */
+ byte L0707_auc_ChampionOrCreatureOrdinalInCell[4]; /* This array has an entry for each cell on the source square, containing the ordinal of the champion or creature (0 if there is no champion or creature at this cell) */
+
+
+ L0703_B_CheckDestinationSquareProjectileImpacts = false;
+ for (int16 i = 0; i < 4; ++i)
+ L0707_auc_ChampionOrCreatureOrdinalInCell[i] = 0;
+ if (thing == Thing::_party) {
+ L0702_i_ImpactType = kM2_ChampionElemType;
+ for (AL0699_ui_Cell = k0_CellNorthWest; AL0699_ui_Cell < k3_CellSouthWest + 1; AL0699_ui_Cell++) {
+ if (_vm->_championMan->f285_getIndexInCell((ViewCell)AL0699_ui_Cell) >= 0) {
+ L0707_auc_ChampionOrCreatureOrdinalInCell[AL0699_ui_Cell] = _vm->M0_indexToOrdinal(AL0699_ui_Cell);
+ }
+ }
+ } else {
+ L0702_i_ImpactType = kM1_CreatureElemType;
+ L0701_ps_Group = (Group*)_vm->_dungeonMan->f156_getThingData(thing);
+ for (AL0699_ui_Cell = k0_CellNorthWest, AL0700_B_CreatureAlive = false; AL0699_ui_Cell < k3_CellSouthWest + 1; AL0699_ui_Cell++) {
+ AL0700_B_CreatureAlive |= L0701_ps_Group->_health[AL0699_ui_Cell];
+ if (_vm->_groupMan->f176_getCreatureOrdinalInCell(L0701_ps_Group, AL0699_ui_Cell)) {
+ L0707_auc_ChampionOrCreatureOrdinalInCell[AL0699_ui_Cell] = _vm->M0_indexToOrdinal(AL0699_ui_Cell);
+ }
+ }
+ if (!AL0700_B_CreatureAlive) {
+ return false;
+ }
+ }
+ if ((destMapX >= 0) && (((((AL0700_i_Distance = srcMapX - destMapX) < 0) ? -AL0700_i_Distance : AL0700_i_Distance) + (((AL0700_i_Distance = srcMapY - destMapY) < 0) ? -AL0700_i_Distance : AL0700_i_Distance)) == 1)) { /* If source and destination squares are adjacent (if party or group is not being teleported) */
+ AL0699_ui_PrimaryDirection = _vm->_groupMan->f228_getDirsWhereDestIsVisibleFromSource(srcMapX, srcMapY, destMapX, destMapY);
+ AL0700_i_SecondaryDirection = returnNextVal(AL0699_ui_PrimaryDirection);
+ for (int16 i = 0; i < 4; ++i)
+ L0706_auc_IntermediaryChampionOrCreatureOrdinalInCell[i] = 0;
+ if (L0706_auc_IntermediaryChampionOrCreatureOrdinalInCell[returnPrevVal(AL0699_ui_PrimaryDirection)] = L0707_auc_ChampionOrCreatureOrdinalInCell[AL0699_ui_PrimaryDirection]) {
+ L0703_B_CheckDestinationSquareProjectileImpacts = true;
+ }
+ if (L0706_auc_IntermediaryChampionOrCreatureOrdinalInCell[returnNextVal(AL0700_i_SecondaryDirection)] = L0707_auc_ChampionOrCreatureOrdinalInCell[AL0700_i_SecondaryDirection]) {
+ L0703_B_CheckDestinationSquareProjectileImpacts = true;
+ }
+ if (!L0707_auc_ChampionOrCreatureOrdinalInCell[AL0699_ui_PrimaryDirection]) {
+ L0707_auc_ChampionOrCreatureOrdinalInCell[AL0699_ui_PrimaryDirection] = L0707_auc_ChampionOrCreatureOrdinalInCell[returnPrevVal(AL0699_ui_PrimaryDirection)];
+ }
+ if (!L0707_auc_ChampionOrCreatureOrdinalInCell[AL0700_i_SecondaryDirection]) {
+ L0707_auc_ChampionOrCreatureOrdinalInCell[AL0700_i_SecondaryDirection] = L0707_auc_ChampionOrCreatureOrdinalInCell[returnNextVal(AL0700_i_SecondaryDirection)];
+ }
+ }
+ L0704_ui_ProjectileMapX = srcMapX; /* Check impacts with projectiles on the source square */
+ L0705_ui_ProjectileMapY = srcMapY;
+T0266017_CheckProjectileImpacts:
+ L0697_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(L0704_ui_ProjectileMapX, L0705_ui_ProjectileMapY);
+ while (L0697_T_Thing != Thing::_endOfList) {
+ if (((L0697_T_Thing).getType() == k14_ProjectileThingType) &&
+ (_vm->_timeline->_g370_events[(((Projectile*)_vm->_dungeonMan->_g284_thingData[k14_ProjectileThingType])[(L0697_T_Thing).getIndex()])._eventIndex]._type != k48_TMEventTypeMoveProjectileIgnoreImpacts) && (AL0699_ui_ChampionOrCreatureOrdinal = L0707_auc_ChampionOrCreatureOrdinalInCell[(L0697_T_Thing).getCell()]) &&
+ _vm->_projexpl->f217_projectileHasImpactOccurred(L0702_i_ImpactType, srcMapX, srcMapY, _vm->M1_ordinalToIndex(AL0699_ui_ChampionOrCreatureOrdinal), L0697_T_Thing)) {
+ _vm->_projexpl->f214_projectileDeleteEvent(L0697_T_Thing);
+ if (_vm->_projexpl->_g364_creatureDamageOutcome == k2_outcomeKilledAllCreaturesInGroup) {
+ return true;
+ }
+ goto T0266017_CheckProjectileImpacts;
+ }
+ L0697_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0697_T_Thing);
+ }
+ if (L0703_B_CheckDestinationSquareProjectileImpacts) {
+ srcMapX |= ((L0704_ui_ProjectileMapX = destMapX) + 1) << 8; /* Check impacts with projectiles on the destination square */
+ srcMapY |= (L0705_ui_ProjectileMapY = destMapY) << 8;
+ for (uint16 i = 0; i < 4; ++i)
+ L0707_auc_ChampionOrCreatureOrdinalInCell[i] = L0706_auc_IntermediaryChampionOrCreatureOrdinalInCell[i];
+ L0703_B_CheckDestinationSquareProjectileImpacts = false;
+ goto T0266017_CheckProjectileImpacts;
+ }
+ return false;
+}
+
+void MovesensMan::f268_addEvent(byte type, byte mapX, byte mapY, byte cell, byte effect, int32 time) {
+ TimelineEvent L0729_s_Event;
+
+
+ M33_setMapAndTime(L0729_s_Event._mapTime, _vm->_dungeonMan->_g272_currMapIndex, time);
+ L0729_s_Event._type = type;
+ L0729_s_Event._priority = 0;
+ L0729_s_Event._B._location._mapX = mapX;
+ L0729_s_Event._B._location._mapY = mapY;
+ L0729_s_Event._C.A._cell = cell;
+ L0729_s_Event._C.A._effect = effect;
+ _vm->_timeline->f238_addEventGetEventIndex(&L0729_s_Event);
+}
+
+int16 MovesensMan::f514_getSound(byte creatureType) {
+ if (_vm->_championMan->_g300_partyIsSleeping) {
+ return 35;
+ }
+
+ switch (creatureType) {
+ case k3_CreatureTypeWizardEyeFlyingEye:
+ case k8_CreatureTypeGhostRive:
+ case k11_CreatureTypeBlackFlame:
+ case k19_CreatureTypeMaterializerZytaz:
+ case k23_CreatureTypeLordChaos:
+ case k25_CreatureTypeLordOrder:
+ case k26_CreatureTypeGreyLord:
+ return 35;
+ case k2_CreatureTypeGiggler:
+ case k9_CreatureTypeStoneGolem:
+ case k10_CreatureTypeMummy:
+ case k14_CreatureTypeVexirk:
+ case k16_CreatureTypeTrolinAntman:
+ case k22_CreatureTypeDemon:
+ return k24_soundMOVE_MUMMY_TROLIN_ANTMAN_STONE_GOLEM_GIGGLER_VEXIRK_DEMON;
+ case k0_CreatureTypeGiantScorpionScorpion:
+ case k4_CreatureTypePainRatHellHound:
+ case k5_CreatureTypeRuster:
+ case k6_CreatureTypeScreamer:
+ case k7_CreatureTypeRockpile:
+ case k15_CreatureTypeMagnetaWormWorm:
+ case k21_CreatureTypeOitu:
+ return k26_soundMOVE_SCREAMER_ROCK_ROCKPILE_MAGENTA_WORM_WORM_PAIN_RAT_HELLHOUND_RUSTER_GIANT_SCORPION_SCORPION_OITU;
+ case k24_CreatureTypeRedDragon:
+ return k32_soundMOVE_RED_DRAGON;
+ case k12_CreatureTypeSkeleton:
+ return k33_soundMOVE_SKELETON;
+ case k18_CreatureTypeAnimatedArmourDethKnight:
+ return k22_soundMOVE_ANIMATED_ARMOUR_DETH_KNIGHT;
+ case k1_CreatureTypeSwampSlimeSlime:
+ case k20_CreatureTypeWaterElemental:
+ return k27_soundMOVE_SWAMP_SLIME_SLIME_DEVIL_WATER_ELEMENTAL;
+ case k13_CreatureTypeCouatl:
+ case k17_CreatureTypeGiantWaspMuncher:
+ return k23_soundMOVE_COUATL_GIANT_WASP_MUNCHER;
+ }
+ return -1000; // if this is returned, it's an error, this should break it good
+}
+
+int16 MovesensMan::f262_getTeleporterRotatedGroupResult(Teleporter* teleporter, Thing thing, uint16 mapIndex) {
+ int16 L0683_i_Rotation;
+ uint16 L0684_ui_GroupDirections;
+ uint16 L0685_ui_UpdatedGroupDirections;
+ Group* L0686_ps_Group;
+ uint16 L0687_ui_UpdatedGroupCells;
+ int16 L0688_i_CreatureIndex;
+ bool L0689_B_AbsoluteRotation;
+ uint16 L0690_ui_GroupCells;
+ int16 L0691_i_CreatureSize;
+ int16 L0692_i_RelativeRotation;
+
+ L0686_ps_Group = (Group*)_vm->_dungeonMan->f156_getThingData(thing);
+ L0683_i_Rotation = teleporter->getRotation();
+ L0684_ui_GroupDirections = _vm->_groupMan->f147_getGroupDirections(L0686_ps_Group, mapIndex);
+ if (L0689_B_AbsoluteRotation = teleporter->getAbsoluteRotation()) {
+ L0685_ui_UpdatedGroupDirections = L0683_i_Rotation;
+ } else {
+ L0685_ui_UpdatedGroupDirections = M21_normalizeModulo4(L0684_ui_GroupDirections + L0683_i_Rotation);
+ }
+ if ((L0687_ui_UpdatedGroupCells = _vm->_groupMan->f145_getGroupCells(L0686_ps_Group, mapIndex)) != k255_CreatureTypeSingleCenteredCreature) {
+ L0690_ui_GroupCells = L0687_ui_UpdatedGroupCells;
+ L0691_i_CreatureSize = getFlag(g243_CreatureInfo[L0686_ps_Group->_type]._attributes, k0x0003_MaskCreatureInfo_size);
+ L0692_i_RelativeRotation = M21_normalizeModulo4(4 + L0685_ui_UpdatedGroupDirections - L0684_ui_GroupDirections);
+ for (L0688_i_CreatureIndex = 0; L0688_i_CreatureIndex <= L0686_ps_Group->getCount(); L0688_i_CreatureIndex++) {
+ L0685_ui_UpdatedGroupDirections = _vm->_groupMan->f178_getGroupValueUpdatedWithCreatureValue(L0685_ui_UpdatedGroupDirections, L0688_i_CreatureIndex, L0689_B_AbsoluteRotation ? L0683_i_Rotation : M21_normalizeModulo4(L0684_ui_GroupDirections + L0683_i_Rotation));
+ if ((L0691_i_CreatureSize == k0_MaskCreatureSizeQuarter) && (L0692_i_RelativeRotation = !L0689_B_AbsoluteRotation)) {
+ L0692_i_RelativeRotation = L0683_i_Rotation;
+ }
+ if (L0692_i_RelativeRotation) {
+ L0687_ui_UpdatedGroupCells = _vm->_groupMan->f178_getGroupValueUpdatedWithCreatureValue(L0687_ui_UpdatedGroupCells, L0688_i_CreatureIndex, M21_normalizeModulo4(L0690_ui_GroupCells + L0692_i_RelativeRotation));
+ }
+ L0684_ui_GroupDirections >>= 2;
+ L0690_ui_GroupCells >>= 2;
+ }
+ }
+ _vm->_dungeonMan->f148_setGroupDirections(L0686_ps_Group, L0685_ui_UpdatedGroupDirections, mapIndex);
+ _vm->_dungeonMan->f146_setGroupCells(L0686_ps_Group, L0687_ui_UpdatedGroupCells, mapIndex);
+ if ((mapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (L0686_ps_Group->setBehaviour(k6_behavior_ATTACK))) {
+ return L0686_ps_Group->getActiveGroupIndex() + 2;
+ }
+ return 1;
+}
+
+Thing MovesensMan::f263_getTeleporterRotatedProjectileThing(Teleporter* teleporter, Thing projectileThing) {
+ int16 L0693_i_UpdatedDirection;
+ int16 L0694_i_Rotation;
+
+
+ L0693_i_UpdatedDirection = _g400_moveResultDir;
+ L0694_i_Rotation = teleporter->getRotation();
+ if (teleporter->getAbsoluteRotation()) {
+ L0693_i_UpdatedDirection = L0694_i_Rotation;
+ } else {
+ L0693_i_UpdatedDirection = M21_normalizeModulo4(L0693_i_UpdatedDirection + L0694_i_Rotation);
+ projectileThing = M15_thingWithNewCell(projectileThing, M21_normalizeModulo4((projectileThing).getCell() + L0694_i_Rotation));
+ }
+ _g400_moveResultDir = L0693_i_UpdatedDirection;
+ return projectileThing;
+}
+
+void MovesensMan::f276_sensorProcessThingAdditionOrRemoval(uint16 mapX, uint16 mapY, Thing thing, bool partySquare, bool addThing) {
+ Thing L0766_T_Thing;
+ int16 L0767_i_ThingType;
+ bool L0768_B_TriggerSensor;
+ Sensor* L0769_ps_Sensor;
+ uint16 L0770_ui_SensorTriggeredCell;
+ uint16 L0771_ui_ThingType;
+ bool L0772_B_SquareContainsObject;
+ bool L0773_B_SquareContainsGroup;
+ int16 L0774_i_ObjectType;
+ bool L0775_B_SquareContainsThingOfSameType;
+ bool L0776_B_SquareContainsThingOfDifferentType;
+ uint16 L0777_ui_Square;
+ int16 L0778_i_Effect;
+ int16 L0779_i_SensorData;
+
+
+ if (thing != Thing::_party) {
+ L0767_i_ThingType = (thing).getType();
+ L0774_i_ObjectType = _vm->_objectMan->f32_getObjectType(thing);
+ } else {
+ L0767_i_ThingType = kM1_PartyThingType;
+ L0774_i_ObjectType = kM1_IconIndiceNone;
+ }
+ if ((!addThing) && (L0767_i_ThingType != kM1_PartyThingType)) {
+ _vm->_dungeonMan->f164_unlinkThingFromList(thing, Thing(0), mapX, mapY);
+ }
+ if (Square(L0777_ui_Square = _vm->_dungeonMan->_g271_currMapData[mapX][mapY]).getType() == k0_ElementTypeWall) {
+ L0770_ui_SensorTriggeredCell = (thing).getCell();
+ } else {
+ L0770_ui_SensorTriggeredCell = (uint16)kM1_CellAny; // this will wrap around
+ }
+ L0772_B_SquareContainsObject = L0773_B_SquareContainsGroup = L0775_B_SquareContainsThingOfSameType = L0776_B_SquareContainsThingOfDifferentType = false;
+ L0766_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(mapX, mapY);
+ if (L0770_ui_SensorTriggeredCell == kM1_CellAny) {
+ while (L0766_T_Thing != Thing::_endOfList) {
+ if ((L0771_ui_ThingType = (L0766_T_Thing).getType()) == k4_GroupThingType) {
+ L0773_B_SquareContainsGroup = true;
+ } else {
+ if ((L0771_ui_ThingType == k2_TextstringType) && (L0767_i_ThingType == kM1_PartyThingType) && addThing && !partySquare) {
+ _vm->_dungeonMan->f168_decodeText(_vm->_g353_stringBuildBuffer, L0766_T_Thing, k1_TextTypeMessage);
+ _vm->_textMan->f47_messageAreaPrintMessage(k15_ColorWhite, _vm->_g353_stringBuildBuffer);
+ } else {
+ if ((L0771_ui_ThingType > k4_GroupThingType) && (L0771_ui_ThingType < k14_ProjectileThingType)) {
+ L0772_B_SquareContainsObject = true;
+ L0775_B_SquareContainsThingOfSameType |= (_vm->_objectMan->f32_getObjectType(L0766_T_Thing) == L0774_i_ObjectType);
+ L0776_B_SquareContainsThingOfDifferentType |= (_vm->_objectMan->f32_getObjectType(L0766_T_Thing) != L0774_i_ObjectType);
+ }
+ }
+ }
+ L0766_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0766_T_Thing);
+ }
+ } else {
+ while (L0766_T_Thing != Thing::_endOfList) {
+ if ((L0770_ui_SensorTriggeredCell == (L0766_T_Thing).getCell()) && ((L0766_T_Thing).getType() > k4_GroupThingType)) {
+ L0772_B_SquareContainsObject = true;
+ L0775_B_SquareContainsThingOfSameType |= (_vm->_objectMan->f32_getObjectType(L0766_T_Thing) == L0774_i_ObjectType);
+ L0776_B_SquareContainsThingOfDifferentType |= (_vm->_objectMan->f32_getObjectType(L0766_T_Thing) != L0774_i_ObjectType);
+ }
+ L0766_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0766_T_Thing);
+ }
+ }
+ if (addThing && (L0767_i_ThingType != kM1_PartyThingType)) {
+ _vm->_dungeonMan->f163_linkThingToList(thing, Thing(0), mapX, mapY);
+ }
+ L0766_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(mapX, mapY);
+ while (L0766_T_Thing != Thing::_endOfList) {
+ if ((L0771_ui_ThingType = (L0766_T_Thing).getType()) == k3_SensorThingType) {
+ L0769_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0766_T_Thing);
+ if ((L0769_ps_Sensor)->getType() == k0_SensorDisabled)
+ goto T0276079;
+ L0779_i_SensorData = L0769_ps_Sensor->getData();
+ L0768_B_TriggerSensor = addThing;
+ if (L0770_ui_SensorTriggeredCell == kM1_CellAny) {
+ switch (L0769_ps_Sensor->getType()) {
+ case k1_SensorFloorTheronPartyCreatureObj:
+ if (partySquare || L0772_B_SquareContainsObject || L0773_B_SquareContainsGroup) /* BUG0_30 A floor sensor is not triggered when you put an object on the floor if a levitating creature is present on the same square. The condition to determine if the sensor should be triggered checks if there is a creature on the square but does not check whether the creature is levitating. While it is normal not to trigger the sensor if there is a non levitating creature on the square (because it was already triggered by the creature itself), a levitating creature should not prevent triggering the sensor with an object. */
+ goto T0276079;
+ break;
+ case k2_SensorFloorTheronPartyCreature:
+ if ((L0767_i_ThingType > k4_GroupThingType) || partySquare || L0773_B_SquareContainsGroup)
+ goto T0276079;
+ break;
+ case k3_SensorFloorParty:
+ if ((L0767_i_ThingType != kM1_PartyThingType) || (_vm->_championMan->_g305_partyChampionCount == 0))
+ goto T0276079;
+ if (L0779_i_SensorData == 0) {
+ if (partySquare)
+ goto T0276079;
+ } else {
+ if (!addThing) {
+ L0768_B_TriggerSensor = false;
+ } else {
+ L0768_B_TriggerSensor = (L0779_i_SensorData == _vm->M0_indexToOrdinal(_vm->_dungeonMan->_g308_partyDir));
+ }
+ }
+ break;
+ case k4_SensorFloorObj:
+ if ((L0779_i_SensorData != _vm->_objectMan->f32_getObjectType(thing)) || L0775_B_SquareContainsThingOfSameType)
+ goto T0276079;
+ break;
+ case k5_SensorFloorPartyOnStairs:
+ // Strangerke: Only present in v2.1, but it fixes a bug so we'll keep it.
+#ifdef COMPILE52_CSB21EN /* CHANGE8_05_FIX The wrong variable is replaced by the correct variable in the condition. The test should not be on L0771_ui_ThingType but on L0767_i_ThingType */
+ if ((L0767_i_ThingType != kM1_PartyThingType) || (M34_SQUARE_TYPE(L0777_ui_Square) != k3_ElementTypeStairs))
+#endif
+ goto T0276079;
+ break;
+ case k6_SensorFloorGroupGenerator:
+ goto T0276079;
+ case k7_SensorFloorCreature:
+ if ((L0767_i_ThingType > k4_GroupThingType) || (L0767_i_ThingType == kM1_PartyThingType) || L0773_B_SquareContainsGroup)
+ goto T0276079;
+ break;
+ case k8_SensorFloorPartyPossession:
+ if (L0767_i_ThingType != kM1_PartyThingType)
+ goto T0276079;
+ L0768_B_TriggerSensor = f274_sensorIsObjcetInPartyPossession(L0779_i_SensorData);
+ break;
+ case k9_SensorFloorVersionChecker:
+ if ((L0767_i_ThingType != kM1_PartyThingType) || !addThing || partySquare)
+ goto T0276079;
+ // Strangerke: 20 is a harcoded version of the game. later version uses 21. Not present in the original dungeons anyway.
+ L0768_B_TriggerSensor = (L0779_i_SensorData <= 20);
+ break;
+ default:
+ goto T0276079;
+ }
+ } else {
+ if (L0770_ui_SensorTriggeredCell != (L0766_T_Thing).getCell())
+ goto T0276079;
+ switch (L0769_ps_Sensor->getType()) {
+ case k1_SensorWallOrnClick:
+ if (L0772_B_SquareContainsObject)
+ goto T0276079;
+ break;
+ case k2_SensorWallOrnClickWithAnyObj:
+ if (L0775_B_SquareContainsThingOfSameType || (L0769_ps_Sensor->getData() != _vm->_objectMan->f32_getObjectType(thing)))
+ goto T0276079;
+ break;
+ case k3_SensorWallOrnClickWithSpecObj:
+ if (L0776_B_SquareContainsThingOfDifferentType || (L0769_ps_Sensor->getData() == _vm->_objectMan->f32_getObjectType(thing)))
+ goto T0276079;
+ break;
+ default:
+ goto T0276079;
+ }
+ }
+ L0768_B_TriggerSensor ^= L0769_ps_Sensor->getRevertEffectA();
+ if ((L0778_i_Effect = L0769_ps_Sensor->getEffectA()) == k3_SensorEffHold) {
+ L0778_i_Effect = L0768_B_TriggerSensor ? k0_SensorEffSet : k1_SensorEffClear;
+ } else {
+ if (!L0768_B_TriggerSensor)
+ goto T0276079;
+ }
+ if (L0769_ps_Sensor->getAudibleA()) {
+ warning("MISSING CODE: F0064_SOUND_RequestPlay_CPSD");
+ }
+ f272_sensorTriggerEffect(L0769_ps_Sensor, L0778_i_Effect, mapX, mapY, (uint16)kM1_CellAny); // this will wrap around
+ goto T0276079;
+ }
+ if (L0771_ui_ThingType >= k4_GroupThingType)
+ break;
+T0276079:
+ L0766_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0766_T_Thing);
+ }
+ f271_processRotationEffect();
+}
+
+bool MovesensMan::f274_sensorIsObjcetInPartyPossession(int16 objectType) {
+ int16 L0742_i_ChampionIndex;
+ uint16 L0743_ui_SlotIndex = 0;
+ Thing L0744_T_Thing = Thing::_none;
+ Champion* L0745_ps_Champion;
+ Thing* L0746_pT_Thing = nullptr;
+ int16 L0747_i_ObjectType;
+ bool L0748_B_LeaderHandObjectProcessed;
+ Container* L0749_ps_Container;
+
+
+ L0748_B_LeaderHandObjectProcessed = false;
+ for (L0742_i_ChampionIndex = k0_ChampionFirst, L0745_ps_Champion = _vm->_championMan->_gK71_champions; L0742_i_ChampionIndex < _vm->_championMan->_g305_partyChampionCount; L0742_i_ChampionIndex++, L0745_ps_Champion++) {
+ if (L0745_ps_Champion->_currHealth) {
+ L0746_pT_Thing = L0745_ps_Champion->_slots;
+ for (L0743_ui_SlotIndex = k0_ChampionSlotReadyHand; (L0743_ui_SlotIndex < k30_ChampionSlotChest_1) && !L0748_B_LeaderHandObjectProcessed; L0743_ui_SlotIndex++) {
+ L0744_T_Thing = *L0746_pT_Thing++;
+T0274003:
+ if ((L0747_i_ObjectType = _vm->_objectMan->f32_getObjectType(L0744_T_Thing)) == objectType) {
+ return true;
+ }
+ if (L0747_i_ObjectType == k144_IconIndiceContainerChestClosed) {
+ L0749_ps_Container = (Container*)_vm->_dungeonMan->f156_getThingData(L0744_T_Thing);
+ L0744_T_Thing = L0749_ps_Container->getSlot();
+ while (L0744_T_Thing != Thing::_endOfList) {
+ if (_vm->_objectMan->f32_getObjectType(L0744_T_Thing) == objectType) {
+ return true;
+ }
+ L0744_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0744_T_Thing);
+ }
+ }
+ }
+ }
+ }
+ if (!L0748_B_LeaderHandObjectProcessed) {
+ L0748_B_LeaderHandObjectProcessed = true;
+ L0744_T_Thing = _vm->_championMan->_g414_leaderHandObject;
+ goto T0274003;
+ }
+ return false;
+}
+
+void MovesensMan::f272_sensorTriggerEffect(Sensor* sensor, int16 effect, int16 mapX, int16 mapY, uint16 cell) {
+ byte g59_squareTypeToEventType[7] = { // @ G0059_auc_Graphic562_SquareTypeToEventType
+ k6_TMEventTypeWall,
+ k5_TMEventTypeCorridor,
+ k9_TMEventTypePit,
+ k0_TMEventTypeNone,
+ k10_TMEventTypeDoor,
+ k8_TMEventTypeTeleporter,
+ k7_TMEventTypeFakeWall}; /* 1 byte of padding inserted by compiler */
+
+ int16 L0736_i_TargetMapX;
+ int16 L0737_i_TargetMapY;
+ register long L0738_l_Time;
+ uint16 L0739_ui_SquareType;
+ uint16 L0740_ui_TargetCell;
+
+
+ if (sensor->getOnlyOnce()) {
+ sensor->setTypeDisabled();
+ }
+ L0738_l_Time = _vm->_g313_gameTime + sensor->getValue();
+ if (sensor->getLocalEffect()) {
+ f270_sensorTriggetLocalEffect(sensor->M49_localEffect(), mapX, mapY, cell);
+ } else {
+ L0736_i_TargetMapX = sensor->getTargetMapX();
+ L0737_i_TargetMapY = sensor->getTargetMapY();
+ L0739_ui_SquareType = Square(_vm->_dungeonMan->_g271_currMapData[L0736_i_TargetMapX][L0737_i_TargetMapY]).getType();
+ if (L0739_ui_SquareType == k0_ElementTypeWall) {
+ L0740_ui_TargetCell = sensor->getTargetCell();
+ } else {
+ L0740_ui_TargetCell = k0_CellNorthWest;
+ }
+ f268_addEvent(g59_squareTypeToEventType[L0739_ui_SquareType], L0736_i_TargetMapX, L0737_i_TargetMapY, L0740_ui_TargetCell, effect, L0738_l_Time);
+ }
+}
+
+void MovesensMan::f270_sensorTriggetLocalEffect(int16 localEffect, int16 effX, int16 effY, int16 effCell) {
+ if (localEffect == k10_SensorEffAddExp) {
+ f269_sensorAddSkillExperience(k8_ChampionSkillSteal, 300, localEffect != kM1_CellAny);
+ return;
}
- warning("MISSING CODE: F0271_SENSOR_ProcessRotationEffect");
- return atLeastOneSensorWasTriggered;
+ _g403_sensorRotationEffect = localEffect;
+ _g404_sensorRotationEffMapX = effX;
+ _g405_sensorRotationEffMapY = effY;
+ _g406_sensorRotationEffCell = effCell;
}
+void MovesensMan::f269_sensorAddSkillExperience(int16 skillIndex, uint16 exp, bool leaderOnly) {
+ int16 L0730_i_ChampionIndex;
+ Champion* L0731_ps_Champion;
+
+ if (leaderOnly) {
+ if (_vm->_championMan->_g411_leaderIndex != kM1_ChampionNone) {
+ _vm->_championMan->f304_addSkillExperience(_vm->_championMan->_g411_leaderIndex, skillIndex, exp);
+ }
+ } else {
+ exp /= _vm->_championMan->_g305_partyChampionCount;
+ for (L0730_i_ChampionIndex = k0_ChampionFirst, L0731_ps_Champion = _vm->_championMan->_gK71_champions; L0730_i_ChampionIndex < _vm->_championMan->_g305_partyChampionCount; L0730_i_ChampionIndex++, L0731_ps_Champion++) {
+ if (L0731_ps_Champion->_currHealth) {
+ _vm->_championMan->f304_addSkillExperience(L0730_i_ChampionIndex, skillIndex, exp);
+ }
+ }
+ }
+}
+
+void MovesensMan::f271_processRotationEffect() {
+ Thing L0732_T_FirstSensorThing;
+ Thing L0733_T_LastSensorThing;
+ Sensor* L0734_ps_FirstSensor;
+ Sensor* L0735_ps_LastSensor;
+
+
+ if (_g403_sensorRotationEffect == kM1_SensorEffNone) {
+ return;
+ }
+ switch (_g403_sensorRotationEffect) {
+ case k1_SensorEffClear:
+ case k2_SensorEffToggle:
+ L0732_T_FirstSensorThing = _vm->_dungeonMan->f161_getSquareFirstThing(_g404_sensorRotationEffMapX, _g405_sensorRotationEffMapY);
+ while (((L0732_T_FirstSensorThing).getType() != k3_SensorThingType) || ((_g406_sensorRotationEffCell != kM1_CellAny) && ((L0732_T_FirstSensorThing).getCell() != _g406_sensorRotationEffCell))) {
+ L0732_T_FirstSensorThing = _vm->_dungeonMan->f159_getNextThing(L0732_T_FirstSensorThing);
+ }
+ L0734_ps_FirstSensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0732_T_FirstSensorThing);
+ L0733_T_LastSensorThing = L0734_ps_FirstSensor->getNextThing();
+ while ((L0733_T_LastSensorThing != Thing::_endOfList) && (((L0733_T_LastSensorThing).getType() != k3_SensorThingType) || ((_g406_sensorRotationEffCell != kM1_CellAny) && ((L0733_T_LastSensorThing).getCell() != _g406_sensorRotationEffCell)))) {
+ L0733_T_LastSensorThing = _vm->_dungeonMan->f159_getNextThing(L0733_T_LastSensorThing);
+ }
+ if (L0733_T_LastSensorThing == Thing::_endOfList)
+ break;
+ _vm->_dungeonMan->f164_unlinkThingFromList(L0732_T_FirstSensorThing, Thing(0), _g404_sensorRotationEffMapX, _g405_sensorRotationEffMapY);
+ L0735_ps_LastSensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0733_T_LastSensorThing);
+ L0733_T_LastSensorThing = _vm->_dungeonMan->f159_getNextThing(L0733_T_LastSensorThing);
+ while (((L0733_T_LastSensorThing != Thing::_endOfList) && ((L0733_T_LastSensorThing).getType() == k3_SensorThingType))) {
+ if ((_g406_sensorRotationEffCell == kM1_CellAny) || ((L0733_T_LastSensorThing).getCell() == _g406_sensorRotationEffCell)) {
+ L0735_ps_LastSensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0733_T_LastSensorThing);
+ }
+ L0733_T_LastSensorThing = _vm->_dungeonMan->f159_getNextThing(L0733_T_LastSensorThing);
+ }
+ L0734_ps_FirstSensor->setNextThing(L0735_ps_LastSensor->getNextThing());
+ L0735_ps_LastSensor->setNextThing(L0732_T_FirstSensorThing);
+ }
+ _g403_sensorRotationEffect = kM1_SensorEffNone;
+}
+
+void MovesensMan::f265_createEvent60to61_moveGroup(Thing groupThing, int16 mapX, int16 mapY, int16 mapIndex, bool audible) {
+ TimelineEvent L0696_s_Event;
+
+ M33_setMapAndTime(L0696_s_Event._mapTime, mapIndex, _vm->_g313_gameTime + 5);
+ L0696_s_Event._type = audible ? k61_TMEventTypeMoveGroupAudible : k60_TMEventTypeMoveGroupSilent;
+ L0696_s_Event._priority = 0;
+ L0696_s_Event._B._location._mapX = mapX;
+ L0696_s_Event._B._location._mapY = mapY;
+ L0696_s_Event._C._slot = groupThing;
+ _vm->_timeline->f238_addEventGetEventIndex(&L0696_s_Event);
+}
+
+Thing MovesensMan::f273_sensorGetObjectOfTypeInCell(int16 mapX, int16 mapY, int16 cell, int16 objectType) {
+ Thing L0741_T_Thing;
+
+
+ L0741_T_Thing = _vm->_dungeonMan->f162_getSquareFirstObject(mapX, mapY);
+ while (L0741_T_Thing != Thing::_endOfList) {
+ if (_vm->_objectMan->f32_getObjectType(L0741_T_Thing) == objectType) {
+ if ((cell == kM1_CellAny) || ((L0741_T_Thing.getCell()) == cell)) {
+ return L0741_T_Thing;
+ }
+ }
+ L0741_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0741_T_Thing);
+ }
+ return Thing::_none;
+}
}