summaryrefslogtreecommitdiffstats
path: root/src/control/Phones.h
blob: 74f24d258e514ac943fd81c2c4abb1601598c926 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once

#include "Physical.h"
#include "AnimBlendAssociation.h"

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
};

struct CPhone
{
	CVector m_vecPos;
	uint16 *m_apMessages[6];
	uint32 m_lastTimeRepeatedMsgShown;
	CEntity *m_pEntity; // it's building pool index in save files
	int32 m_nState;
	uint8 field_30;
};

static_assert(sizeof(CPhone) == 0x34, "CPhone: error");

class CPhoneInfo {
	static bool &isPhonePickedUp;
	static bool &isPhoneBeingPickedUp;
	static CPhone *&pickedUpPhone;
public:
	int32 m_nMax;
	int32 m_nNum;
	CPhone m_aPhones[50];

	CPhoneInfo() { }
	~CPhoneInfo() { }

	int FindNearestFreePhone(CVector*);
	bool PhoneAtThisPosition(CVector);
	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);
};

extern CPhoneInfo &gPhoneInfo;

void PhonePutDownCB(CAnimBlendAssociation *assoc, void *arg);
void PhonePickUpCB(CAnimBlendAssociation *assoc, void *arg);