Add reportOverloaded
This commit is contained in:
parent
c383fc6b95
commit
502c920656
|
@ -285,6 +285,8 @@ static int _anim_change_fid(Object* obj, int animationSequenceIndex, int fid);
|
||||||
static int _check_gravity(int tile, int elevation);
|
static int _check_gravity(int tile, int elevation);
|
||||||
static unsigned int animationComputeTicksPerFrame(Object* object, int fid);
|
static unsigned int animationComputeTicksPerFrame(Object* object, int fid);
|
||||||
|
|
||||||
|
static void reportOverloaded(Object* critter);
|
||||||
|
|
||||||
// 0x510718
|
// 0x510718
|
||||||
static int gAnimationCurrentSad = 0;
|
static int gAnimationCurrentSad = 0;
|
||||||
|
|
||||||
|
@ -667,20 +669,9 @@ int animationRegisterRunToObject(Object* owner, Object* destination, int actionP
|
||||||
|
|
||||||
if (critterIsEncumbered(owner)) {
|
if (critterIsEncumbered(owner)) {
|
||||||
if (objectIsPartyMember(owner)) {
|
if (objectIsPartyMember(owner)) {
|
||||||
char formattedText[92];
|
reportOverloaded(owner);
|
||||||
MessageListItem messageListItem;
|
}
|
||||||
|
|
||||||
if (owner == gDude) {
|
|
||||||
// You are overloaded.
|
|
||||||
strcpy(formattedText, getmsg(&gMiscMessageList, &messageListItem, 8000));
|
|
||||||
} else {
|
|
||||||
// %s is overloaded.
|
|
||||||
sprintf(formattedText,
|
|
||||||
getmsg(&gMiscMessageList, &messageListItem, 8001),
|
|
||||||
critterGetName(owner));
|
|
||||||
}
|
|
||||||
displayMonitorAddMessage(formattedText);
|
|
||||||
}
|
|
||||||
return animationRegisterMoveToObject(owner, destination, actionPoints, delay);
|
return animationRegisterMoveToObject(owner, destination, actionPoints, delay);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -760,20 +751,7 @@ int animationRegisterRunToTile(Object* owner, int tile, int elevation, int actio
|
||||||
|
|
||||||
if (critterIsEncumbered(owner)) {
|
if (critterIsEncumbered(owner)) {
|
||||||
if (objectIsPartyMember(owner)) {
|
if (objectIsPartyMember(owner)) {
|
||||||
MessageListItem messageListItem;
|
reportOverloaded(owner);
|
||||||
char formattedText[72];
|
|
||||||
|
|
||||||
if (owner == gDude) {
|
|
||||||
// You are overloaded.
|
|
||||||
strcpy(formattedText, getmsg(&gMiscMessageList, &messageListItem, 8000));
|
|
||||||
} else {
|
|
||||||
// %s is overloaded.
|
|
||||||
sprintf(formattedText,
|
|
||||||
getmsg(&gMiscMessageList, &messageListItem, 8001),
|
|
||||||
critterGetName(owner));
|
|
||||||
}
|
|
||||||
|
|
||||||
displayMonitorAddMessage(formattedText);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return animationRegisterMoveToTile(owner, tile, elevation, actionPoints, delay);
|
return animationRegisterMoveToTile(owner, tile, elevation, actionPoints, delay);
|
||||||
|
@ -3362,4 +3340,24 @@ int animationRegisterSetLightIntensity(Object* owner, int lightDistance, int lig
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void reportOverloaded(Object* critter)
|
||||||
|
{
|
||||||
|
MessageListItem messageListItem;
|
||||||
|
char formattedText[100];
|
||||||
|
|
||||||
|
if (critter == gDude) {
|
||||||
|
// You are overloaded.
|
||||||
|
snprintf(formattedText, sizeof(formattedText),
|
||||||
|
"%s",
|
||||||
|
getmsg(&gMiscMessageList, &messageListItem, 8000));
|
||||||
|
} else {
|
||||||
|
// %s is overloaded.
|
||||||
|
snprintf(formattedText, sizeof(formattedText),
|
||||||
|
getmsg(&gMiscMessageList, &messageListItem, 8001),
|
||||||
|
critterGetName(critter));
|
||||||
|
}
|
||||||
|
|
||||||
|
displayMonitorAddMessage(formattedText);
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace fallout
|
} // namespace fallout
|
||||||
|
|
Loading…
Reference in New Issue