mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-08 14:00:43 +00:00
163301dcd5
SVN r3259 (trunk)
52 lines
1.2 KiB
C++
52 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"
|
|
#include "farchive.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;
|
|
}
|
|
|