2019-06-24 22:42:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-07-10 06:06:43 +00:00
|
|
|
#include "Physical.h"
|
2019-06-24 22:42:23 +00:00
|
|
|
#include "AnimBlendAssociation.h"
|
|
|
|
|
2019-07-10 20:07:41 +00:00
|
|
|
enum {
|
|
|
|
PHONE_STATE_FREE,
|
|
|
|
PHONE_STATE_1,
|
|
|
|
PHONE_STATE_2,
|
|
|
|
PHONE_STATE_MESSAGE_REMOVED,
|
|
|
|
PHONE_STATE_ONETIME_MESSAGE_SET,
|
|
|
|
PHONE_STATE_REPEATED_MESSAGE_SET,
|
|
|
|
PHONE_STATE_REPEATED_MESSAGE_SHOWN_ONCE,
|
|
|
|
PHONE_STATE_ONETIME_MESSAGE_SHOWN,
|
|
|
|
PHONE_STATE_REPEATED_MESSAGE_SHOWN,
|
|
|
|
PHONE_STATE_9
|
|
|
|
};
|
|
|
|
|
2019-07-10 06:06:43 +00:00
|
|
|
struct CPhone
|
|
|
|
{
|
|
|
|
CVector m_vecPos;
|
|
|
|
uint16 *m_apMessages[6];
|
2019-07-10 20:07:41 +00:00
|
|
|
uint32 m_lastTimeRepeatedMsgShown;
|
|
|
|
CEntity *m_pEntity; // it's building pool index in save files
|
2019-07-10 06:06:43 +00:00
|
|
|
int32 m_nState;
|
|
|
|
uint8 field_30;
|
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(CPhone) == 0x34, "CPhone: error");
|
|
|
|
|
|
|
|
class CPhoneInfo {
|
2019-07-10 20:07:41 +00:00
|
|
|
static bool &isPhonePickedUp;
|
|
|
|
static bool &isPhoneBeingPickedUp;
|
|
|
|
static CPhone *&pickedUpPhone;
|
2019-07-10 06:06:43 +00:00
|
|
|
public:
|
|
|
|
int32 m_nMax;
|
|
|
|
int32 m_nNum;
|
|
|
|
CPhone m_aPhones[50];
|
|
|
|
|
|
|
|
CPhoneInfo() { }
|
|
|
|
~CPhoneInfo() { }
|
|
|
|
|
|
|
|
int FindNearestFreePhone(CVector*);
|
|
|
|
bool PhoneAtThisPosition(CVector);
|
2019-07-10 20:07:41 +00:00
|
|
|
bool HasMessageBeenDisplayed(int);
|
|
|
|
bool IsMessageBeingDisplayed(int);
|
|
|
|
void Load(CPhoneInfo *source, uint8 buffer);
|
|
|
|
void SetPhoneMessage_JustOnce(int phoneId, uint16 *msg1, uint16 *msg2, uint16 *msg3, uint16 *msg4, uint16 *msg5, uint16 *msg6);
|
|
|
|
void SetPhoneMessage_Repeatedly(int phoneId, uint16 *msg1, uint16 *msg2, uint16 *msg3, uint16 *msg4, uint16 *msg5, uint16 *msg6);
|
2019-07-10 06:06:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CPhoneInfo &gPhoneInfo;
|
|
|
|
|
2019-06-24 22:42:23 +00:00
|
|
|
void PhonePutDownCB(CAnimBlendAssociation *assoc, void *arg);
|
|
|
|
void PhonePickUpCB(CAnimBlendAssociation *assoc, void *arg);
|