mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-08 14:01:32 +00:00
8ca7c05e9d
that animated icons can be done with it. - Changed FImageCollection to use a TArray to hold its data. - Fixed: SetChanHeadSettings did an assignment instead of comparing the channel ID witg CHAN_CEILING. - Changed sound sequence names for animated doors to FNames. - Automatically fixed: DCeiling didn't properly serialize its texture id. - Replaced integers as texture ID representation with a specific new type to track down all potentially incorrect uses and remaining WORDs used for texture IDs so that more than 32767 or 65535 textures can be defined. SVN r1036 (trunk)
78 lines
2 KiB
C++
78 lines
2 KiB
C++
#ifndef P_CONVERSATION_H
|
|
#define P_CONVERSATION_H 1
|
|
|
|
// TODO: Generalize the conversation system to something NWN-like that
|
|
// users can edit as simple text files. Particularly useful would be
|
|
// the ability to call ACS functions to implement AppearsWhen properties
|
|
// and ACS scripts to implement ActionTaken properties.
|
|
// TODO: Make this work in demos.
|
|
|
|
struct FStrifeDialogueReply;
|
|
class FTexture;
|
|
struct FBrokenLines;
|
|
|
|
// FStrifeDialogueNode holds text an NPC says to the player
|
|
struct FStrifeDialogueNode
|
|
{
|
|
~FStrifeDialogueNode ();
|
|
const PClass *DropType;
|
|
const PClass *ItemCheck[3];
|
|
int ItemCheckNode; // index into StrifeDialogues
|
|
|
|
const PClass *SpeakerType;
|
|
char *SpeakerName;
|
|
FSoundID SpeakerVoice;
|
|
FTextureID Backdrop;
|
|
char *Dialogue;
|
|
|
|
FStrifeDialogueReply *Children;
|
|
};
|
|
|
|
// FStrifeDialogueReply holds responses the player can give to the NPC
|
|
struct FStrifeDialogueReply
|
|
{
|
|
~FStrifeDialogueReply ();
|
|
|
|
FStrifeDialogueReply *Next;
|
|
const PClass *GiveType;
|
|
const PClass *ItemCheck[3];
|
|
int ItemCheckAmount[3];
|
|
char *Reply;
|
|
char *QuickYes;
|
|
int NextNode; // index into StrifeDialogues
|
|
int LogNumber;
|
|
char *QuickNo;
|
|
bool NeedsGold;
|
|
|
|
FBrokenLines *ReplyLines;
|
|
};
|
|
|
|
// [CW] These are used to make conversations work.
|
|
enum
|
|
{
|
|
CONV_NPCANGLE,
|
|
CONV_ANIMATE,
|
|
CONV_GIVEINVENTORY,
|
|
CONV_TAKEINVENTORY,
|
|
CONV_SETNULL,
|
|
};
|
|
|
|
extern TArray<FStrifeDialogueNode *> StrifeDialogues;
|
|
|
|
// There were 344 types in Strife, and Strife conversations refer
|
|
// to their index in the mobjinfo table. This table indexes all
|
|
// the Strife actor types in the order Strife had them and is
|
|
// initialized as part of the actor's setup in infodefaults.cpp.
|
|
extern const PClass *StrifeTypes[1001];
|
|
|
|
struct MapData;
|
|
|
|
void P_LoadStrifeConversations (MapData *map, const char *mapname);
|
|
void P_FreeStrifeConversations ();
|
|
|
|
void P_StartConversation (AActor *npc, AActor *pc, bool facetalker, bool saveangle);
|
|
void P_ResumeConversation ();
|
|
|
|
void P_ConversationCommand (int player, BYTE **stream);
|
|
|
|
#endif
|