aboutsummaryrefslogtreecommitdiff
path: root/engines/dm
diff options
context:
space:
mode:
authorBendegúz Nagy2016-07-12 08:31:10 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit639fd36f38742669a03814e034bf4dce981d2fea (patch)
tree15e80828d0ef155a2a1740ada9237e6f2801dadb /engines/dm
parentc62029211dbd377b240bce8687175a5ed40cd8da (diff)
downloadscummvm-rg350-639fd36f38742669a03814e034bf4dce981d2fea.tar.gz
scummvm-rg350-639fd36f38742669a03814e034bf4dce981d2fea.tar.bz2
scummvm-rg350-639fd36f38742669a03814e034bf4dce981d2fea.zip
DM: Add f254_timelineProcessEvent12_hideDamageReceived
Diffstat (limited to 'engines/dm')
-rw-r--r--engines/dm/timeline.cpp24
-rw-r--r--engines/dm/timeline.h1
2 files changed, 23 insertions, 2 deletions
diff --git a/engines/dm/timeline.cpp b/engines/dm/timeline.cpp
index f8725a2ded..0f36220406 100644
--- a/engines/dm/timeline.cpp
+++ b/engines/dm/timeline.cpp
@@ -33,6 +33,7 @@
#include "projexpl.h"
#include "movesens.h"
#include "text.h"
+#include "eventman.h"
namespace DM {
@@ -332,7 +333,7 @@ void Timeline::f261_processTimeline() {
}
goto T0261048;
case k12_TMEventTypeHideDamageReceived:
- //F0254_TIMELINE_ProcessEvent12_HideDamageReceived(L0682_s_Event._priority);
+ f254_timelineProcessEvent12_hideDamageReceived(L0682_s_Event._priority);
break;
case k70_TMEventTypeLight:
_vm->_dungeonMan->f173_setCurrentMap(_vm->_dungeonMan->_g309_partyMapIndex);
@@ -973,9 +974,28 @@ void Timeline::f259_timelineProcessEvent11Part2_moveWeaponFromQuiverToSlot(uint1
bool Timeline::f258_timelineHasWeaponMovedSlot(int16 champIndex, Champion* champ, uint16 sourceSlotIndex, int16 destSlotIndex) {
if (Thing(champ->_slots[sourceSlotIndex]).getType() == k5_WeaponThingType) {
_vm->_championMan->f301_addObjectInSlot((ChampionIndex)champIndex, _vm->_championMan->f300_getObjectRemovedFromSlot(champIndex, sourceSlotIndex),
- (ChampionSlot)destSlotIndex);
+ (ChampionSlot)destSlotIndex);
return true;
}
return false;
}
+
+void Timeline::f254_timelineProcessEvent12_hideDamageReceived(uint16 champIndex) {
+ Champion* L0663_ps_Champion;
+
+
+ L0663_ps_Champion = &_vm->_championMan->_gK71_champions[champIndex];
+ L0663_ps_Champion->_hideDamageReceivedIndex = -1;
+ if (!L0663_ps_Champion->_currHealth) {
+ return;
+ }
+ if (_vm->M0_indexToOrdinal(champIndex) == _vm->_inventoryMan->_g432_inventoryChampionOrdinal) {
+ _vm->_eventMan->f78_showMouse();
+ _vm->_inventoryMan->f354_drawStatusBoxPortrait((ChampionIndex)champIndex);
+ _vm->_eventMan->f77_hideMouse();
+ } else {
+ setFlag(L0663_ps_Champion->_attributes, k0x0080_ChampionAttributeNameTitle);
+ _vm->_championMan->f292_drawChampionState((ChampionIndex)champIndex);
+ }
+}
}
diff --git a/engines/dm/timeline.h b/engines/dm/timeline.h
index 021889dbfb..636d62db4f 100644
--- a/engines/dm/timeline.h
+++ b/engines/dm/timeline.h
@@ -183,6 +183,7 @@ public:
uint16 slotIndex);// @ F0259_TIMELINE_ProcessEvent11Part2_MoveWeaponFromQuiverToSlot
bool f258_timelineHasWeaponMovedSlot(int16 champIndex, Champion *champ,
uint16 sourceSlotIndex, int16 destSlotIndex); // @ F0258_TIMELINE_HasWeaponMovedToSlot
+ void f254_timelineProcessEvent12_hideDamageReceived(uint16 champIndex); // @ F0254_TIMELINE_ProcessEvent12_HideDamageReceived
};