re3/src/control/Phones.h

78 lines
2.0 KiB
C
Raw Normal View History

2019-06-24 22:42:23 +00:00
#pragma once
#include "Physical.h"
2019-07-15 12:11:40 +00:00
class CPed;
class CAnimBlendAssociation;
2019-06-24 22:42:23 +00:00
2019-12-02 20:02:32 +00:00
enum PhoneState {
2019-07-10 20:07:41 +00:00
PHONE_STATE_FREE,
PHONE_STATE_REPORTING_CRIME, // CCivilianPed::ProcessControl sets it but unused
2019-07-10 20:07:41 +00:00
PHONE_STATE_2,
PHONE_STATE_MESSAGE_REMOVED,
PHONE_STATE_ONETIME_MESSAGE_SET,
PHONE_STATE_REPEATED_MESSAGE_SET,
PHONE_STATE_REPEATED_MESSAGE_SHOWN_ONCE,
2019-12-02 20:02:32 +00:00
PHONE_STATE_ONETIME_MESSAGE_STARTED,
PHONE_STATE_REPEATED_MESSAGE_STARTED,
PHONE_STATE_9 // just rings, picking being handled via script. most of the time game uses this
2019-07-10 20:07:41 +00:00
};
class CPhone
{
public:
CVector m_vecPos;
2019-07-15 12:11:40 +00:00
wchar *m_apMessages[6];
2019-12-02 20:02:32 +00:00
uint32 m_repeatedMessagePickupStart;
CEntity *m_pEntity; // stored as building pool index in save files
2019-12-02 20:02:32 +00:00
PhoneState m_nState;
bool m_visibleToCam;
CPhone() { }
~CPhone() { }
};
VALIDATE_SIZE(CPhone, 0x34);
class CPhoneInfo {
2019-07-15 12:11:40 +00:00
public:
2020-04-17 05:54:14 +00:00
static bool bDisplayingPhoneMessage;
static uint32 PhoneEnableControlsTimer;
static CPhone *pPhoneDisplayingMessages;
static bool bPickingUpPhone;
static CPed *pCallBackPed;
2019-07-15 12:11:40 +00:00
int32 m_nMax;
2019-12-02 20:02:32 +00:00
int32 m_nScriptPhonesMax;
CPhone m_aPhones[NUMPHONES];
CPhoneInfo() { }
~CPhoneInfo() { }
int FindNearestFreePhone(CVector*);
bool PhoneAtThisPosition(CVector);
2019-07-10 20:07:41 +00:00
bool HasMessageBeenDisplayed(int);
bool IsMessageBeingDisplayed(int);
void Load(uint8 *buf, uint32 size);
void Save(uint8 *buf, uint32 *size);
2019-07-15 12:11:40 +00:00
void SetPhoneMessage_JustOnce(int phoneId, wchar *msg1, wchar *msg2, wchar *msg3, wchar *msg4, wchar *msg5, wchar *msg6);
void SetPhoneMessage_Repeatedly(int phoneId, wchar *msg1, wchar *msg2, wchar *msg3, wchar *msg4, wchar *msg5, wchar *msg6);
int GrabPhone(float, float);
void Initialise(void);
void Shutdown(void);
2019-10-18 22:23:40 +00:00
void Update(void);
#ifdef PEDS_REPORT_CRIMES_ON_PHONE
void SwapPhone(float xPos, float yPos, int into);
#endif
};
2020-04-17 05:54:14 +00:00
extern CPhoneInfo gPhoneInfo;
2019-06-24 22:42:23 +00:00
void PhonePutDownCB(CAnimBlendAssociation *assoc, void *arg);
2019-12-02 20:02:32 +00:00
void PhonePickUpCB(CAnimBlendAssociation *assoc, void *arg);
#ifdef PEDS_REPORT_CRIMES_ON_PHONE
2019-12-02 20:02:32 +00:00
extern CPed *crimeReporters[NUMPHONES];
bool isPhoneAvailable(int);
#endif