summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/gokz-racing/race.sp
blob: 5ddc2a80437d172497fdaa14dcebf9e1281a9348 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
	Race info storing and accessing using a StringMap.
	Each race is given a unique race ID when created.
	See the RaceInfo enum for what information is accessible.
	See the RaceStatus enum for possible race states.
*/



static StringMap raceInfo;
static int lastRaceID;



// =====[ GENERAL ]=====

int GetRaceInfo(int raceID, RaceInfo prop)
{
	ArrayList info;
	if (raceInfo.GetValue(IntToStringEx(raceID), info))
	{
		return info.Get(view_as<int>(prop));
	}
	else
	{
		return -1;
	}
}

static bool SetRaceInfo(int raceID, RaceInfo prop, int value)
{
	ArrayList info;
	if (raceInfo.GetValue(IntToStringEx(raceID), info))
	{
		int oldValue = info.Get(view_as<int>(prop));
		if (oldValue != value)
		{
			info.Set(view_as<int>(prop), value);
			Call_OnRaceInfoChanged(raceID, prop, oldValue, value);
		}
		return true;
	}
	else
	{
		return false;
	}
}

int IncrementFinishedRacerCount(int raceID)
{
	int finishedRacers = GetRaceInfo(raceID, RaceInfo_FinishedRacerCount) + 1;
	SetRaceInfo(raceID, RaceInfo_FinishedRacerCount, finishedRacers);
	return finishedRacers;
}

int GetRaceHost(int raceID)
{
	return GetClientOfUserId(GetRaceInfo(raceID, RaceInfo_HostUserID));
}

ArrayList GetUnfinishedRacers(int raceID)
{
	ArrayList racers = new ArrayList();
	for (int i = 1; i <= MaxClients; i++)
	{
		if (GetRaceID(i) == raceID && !IsFinished(i))
		{
			racers.Push(i);
		}
	}
	return racers;
}

int GetUnfinishedRacersCount(int raceID)
{
	ArrayList racers = GetUnfinishedRacers(raceID);
	int count = racers.Length;
	delete racers;
	return count;
}

ArrayList GetAcceptedRacers(int raceID)
{
	ArrayList racers = new ArrayList();
	for (int i = 1; i <= MaxClients; i++)
	{
		if (GetRaceID(i) == raceID && IsAccepted(i))
		{
			racers.Push(i);
		}
	}
	return racers;
}

int GetAcceptedRacersCount(int raceID)
{
	ArrayList racers = GetAcceptedRacers(raceID);
	int count = racers.Length;
	delete racers;
	return count;
}



// =====[ REGISTRATION ]=====

int RegisterRace(int host, int type, int course, int mode, int checkpointRule, int cooldownRule)
{
	int raceID = ++lastRaceID;
	
	ArrayList info = new ArrayList(1, view_as<int>(RACEINFO_COUNT));
	info.Set(view_as<int>(RaceInfo_ID), raceID);
	info.Set(view_as<int>(RaceInfo_Status), RaceStatus_Pending);
	info.Set(view_as<int>(RaceInfo_HostUserID), GetClientUserId(host));
	info.Set(view_as<int>(RaceInfo_FinishedRacerCount), 0);
	info.Set(view_as<int>(RaceInfo_Type), type);
	info.Set(view_as<int>(RaceInfo_Course), course);
	info.Set(view_as<int>(RaceInfo_Mode), mode);
	info.Set(view_as<int>(RaceInfo_CheckpointRule), checkpointRule);
	info.Set(view_as<int>(RaceInfo_CooldownRule), cooldownRule);
	
	raceInfo.SetValue(IntToStringEx(raceID), info);
	
	Call_OnRaceRegistered(raceID);
	
	return raceID;
}

static void UnregisterRace(int raceID)
{
	ArrayList info;
	if (raceInfo.GetValue(IntToStringEx(raceID), info))
	{
		delete info;
		raceInfo.Remove(IntToStringEx(raceID));
	}
}



// =====[ START ]=====

bool StartRace(int raceID)
{
	SetRaceInfo(raceID, RaceInfo_Status, RaceStatus_Countdown);
	
	for (int client = 1; client <= MaxClients; client++)
	{
		if (GetRaceID(client) == raceID)
		{
			StartRacer(client);
			GOKZ_PrintToChat(client, true, "%t", "Race Countdown Started");
		}
	}
	
	CreateTimer(RC_COUNTDOWN_TIME, Timer_EndCountdown, raceID);
	
	return true;
}

public Action Timer_EndCountdown(Handle timer, int raceID)
{
	SetRaceInfo(raceID, RaceInfo_Status, RaceStatus_Started);
	return Plugin_Continue;
}



// =====[ ABORT ]=====

bool AbortRace(int raceID)
{
	SetRaceInfo(raceID, RaceInfo_Status, RaceStatus_Aborting);
	
	for (int client = 1; client <= MaxClients; client++)
	{
		if (GetRaceID(client) == raceID)
		{
			AbortRacer(client);
			GOKZ_PrintToChat(client, true, "%t", "Race Has Been Aborted");
			GOKZ_PlayErrorSound(client);
		}
	}
	
	UnregisterRace(raceID);
	
	return true;
}



// =====[ EVENTS ]=====

void OnPluginStart_Race()
{
	raceInfo = new StringMap();
}

void OnFinish_Race(int raceID)
{
	if (GetUnfinishedRacersCount(raceID) == 0)
	{
		UnregisterRace(raceID);
	}
}

void OnRequestAccepted_Race(int raceID)
{
	if (GetRaceInfo(raceID, RaceInfo_Type) == RaceType_Duel)
	{
		StartRace(raceID);
	}
}

void OnRequestDeclined_Race(int raceID)
{
	if (GetRaceInfo(raceID, RaceInfo_Type) == RaceType_Duel)
	{
		AbortRace(raceID);
	}
}