2016-03-01 15:47:10 +00:00
|
|
|
#ifndef P_CONVERSATION_H
|
|
|
|
#define P_CONVERSATION_H 1
|
|
|
|
|
|
|
|
#include <tarray.h>
|
|
|
|
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "textures/textures.h"
|
|
|
|
|
|
|
|
struct FStrifeDialogueReply;
|
|
|
|
class FTexture;
|
|
|
|
struct FBrokenLines;
|
|
|
|
|
|
|
|
struct FStrifeDialogueItemCheck
|
|
|
|
{
|
2017-02-08 17:11:23 +00:00
|
|
|
PClassActor *Item;
|
2016-03-01 15:47:10 +00:00
|
|
|
int Amount;
|
|
|
|
};
|
|
|
|
|
|
|
|
// FStrifeDialogueNode holds text an NPC says to the player
|
|
|
|
struct FStrifeDialogueNode
|
|
|
|
{
|
|
|
|
~FStrifeDialogueNode ();
|
2017-02-21 20:36:20 +00:00
|
|
|
PClassActor *DropType = nullptr;
|
2016-03-01 15:47:10 +00:00
|
|
|
TArray<FStrifeDialogueItemCheck> ItemCheck;
|
2017-02-21 20:36:20 +00:00
|
|
|
int ThisNodeNum = 0; // location of this node in StrifeDialogues
|
|
|
|
int ItemCheckNode = 0; // index into StrifeDialogues
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2017-02-21 20:36:20 +00:00
|
|
|
PClassActor *SpeakerType = nullptr;
|
2017-02-19 00:11:52 +00:00
|
|
|
FString SpeakerName;
|
2016-03-01 15:47:10 +00:00
|
|
|
FSoundID SpeakerVoice;
|
2017-02-19 13:21:49 +00:00
|
|
|
FString Backdrop;
|
2017-02-19 00:11:52 +00:00
|
|
|
FString Dialogue;
|
|
|
|
FString Goodbye; // must init to null for binary scripts to work as intended
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2017-02-21 20:36:20 +00:00
|
|
|
FStrifeDialogueReply *Children = nullptr;
|
2017-02-19 13:21:49 +00:00
|
|
|
FName MenuClassName;
|
|
|
|
FString UserData;
|
2016-03-01 15:47:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// FStrifeDialogueReply holds responses the player can give to the NPC
|
|
|
|
struct FStrifeDialogueReply
|
|
|
|
{
|
2017-02-21 20:36:20 +00:00
|
|
|
FStrifeDialogueReply *Next = nullptr;
|
|
|
|
PClassActor *GiveType = nullptr;
|
|
|
|
int ActionSpecial = 0;
|
|
|
|
int Args[5] = {};
|
|
|
|
int PrintAmount = 0;
|
2016-03-01 15:47:10 +00:00
|
|
|
TArray<FStrifeDialogueItemCheck> ItemCheck;
|
2016-10-28 11:42:37 +00:00
|
|
|
TArray<FStrifeDialogueItemCheck> ItemCheckRequire;
|
|
|
|
TArray<FStrifeDialogueItemCheck> ItemCheckExclude;
|
2017-02-19 00:11:52 +00:00
|
|
|
FString Reply;
|
|
|
|
FString QuickYes;
|
|
|
|
FString QuickNo;
|
|
|
|
FString LogString;
|
2017-02-21 20:36:20 +00:00
|
|
|
int NextNode = 0; // index into StrifeDialogues
|
|
|
|
int LogNumber = 0;
|
|
|
|
bool NeedsGold = false;
|
2016-03-01 15:47:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern TArray<FStrifeDialogueNode *> StrifeDialogues;
|
|
|
|
|
|
|
|
struct MapData;
|
|
|
|
|
|
|
|
void SetStrifeType(int convid, PClassActor *Class);
|
|
|
|
void SetConversation(int convid, PClassActor *Class, int dlgindex);
|
|
|
|
PClassActor *GetStrifeType (int typenum);
|
|
|
|
int GetConversation(int conv_id);
|
|
|
|
int GetConversation(FName classname);
|
|
|
|
|
|
|
|
bool LoadScriptFile (const char *name, bool include, int type = 0);
|
|
|
|
|
|
|
|
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 ();
|
|
|
|
|
2017-03-08 14:20:00 +00:00
|
|
|
void P_ConversationCommand (int netcode, int player, uint8_t **stream);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2018-03-11 17:32:00 +00:00
|
|
|
class FileReader;
|
|
|
|
bool P_ParseUSDF(int lumpnum, FileReader &lump, int lumplen);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|