mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
6e83d231fe
- Changed WI_drawPercent() when wi_percents is false so that the total display is optional, and it formats it like Heretic's intermission, with a slash and a fixed-width right column. - Font is no longer a property of the screen object. Pass the font to DrawText and DrawChar directly instead. - Doom's intermission characters are now collected together as a font so they can be colorized. SVN r1294 (trunk)
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#include "info.h"
|
|
#include "a_pickups.h"
|
|
#include "a_artifacts.h"
|
|
#include "gstrings.h"
|
|
#include "p_local.h"
|
|
#include "s_sound.h"
|
|
#include "c_console.h"
|
|
#include "doomstat.h"
|
|
#include "v_font.h"
|
|
|
|
IMPLEMENT_CLASS (APuzzleItem)
|
|
|
|
void APuzzleItem::Serialize (FArchive &arc)
|
|
{
|
|
Super::Serialize (arc);
|
|
arc << PuzzleItemNumber;
|
|
}
|
|
|
|
bool APuzzleItem::HandlePickup (AInventory *item)
|
|
{
|
|
// Can't carry more than 1 of each puzzle item in coop netplay
|
|
if (multiplayer && !deathmatch && item->GetClass() == GetClass())
|
|
{
|
|
return true;
|
|
}
|
|
return Super::HandlePickup (item);
|
|
}
|
|
|
|
bool APuzzleItem::Use (bool pickup)
|
|
{
|
|
if (P_UsePuzzleItem (Owner, PuzzleItemNumber))
|
|
{
|
|
return true;
|
|
}
|
|
// [RH] Always play the sound if the use fails.
|
|
S_Sound (Owner, CHAN_VOICE, "*puzzfail", 1, ATTN_IDLE);
|
|
if (Owner != NULL && Owner->CheckLocalView (consoleplayer))
|
|
{
|
|
const char *message = GetClass()->Meta.GetMetaString (AIMETA_PuzzFailMessage);
|
|
if (message != NULL && *message=='$') message = GStrings[message + 1];
|
|
if (message == NULL) message = GStrings("TXT_USEPUZZLEFAILED");
|
|
C_MidPrintBold (SmallFont, message);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool APuzzleItem::ShouldStay ()
|
|
{
|
|
return !!multiplayer;
|
|
}
|
|
|