forked from DarkflameUniverse/DarkflameServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseRandomServer.h
More file actions
59 lines (51 loc) · 1.46 KB
/
BaseRandomServer.h
File metadata and controls
59 lines (51 loc) · 1.46 KB
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
#pragma once
#include <map>
class Spawner;
class BaseRandomServer
{
public:
struct ZoneEntry
{
LOT lot;
int32_t num;
std::string name;
};
struct Zone
{
std::vector<BaseRandomServer::ZoneEntry> entries;
int32_t iChance;
};
void BaseStartup(Entity* self);
void CheckEvents(Entity* self);
void SpawnMapZones(Entity* self);
void SpawnSection(Entity* self, const std::string& sectionName, float iMultiplier);
void SetSpawnerNetwork(Entity* self, const std::string& spawnerName, int32_t spawnNum, LOT spawnLOT);
BaseRandomServer::Zone* GetRandomLoad(Entity* self, const std::string& sectionName);
void SpawnersUp(Entity* self);
void SpawnersDown(Entity* self);
void BaseOnTimerDone(Entity* self, const std::string& timerName);
void NotifySpawnerOfDeath(Entity* self, Spawner* spawner);
void NamedEnemyDeath(Entity* self, Spawner* spawner);
void SpawnNamedEnemy(Entity* self);
void NamedTimerDone(Entity* self, const std::string& timerName);
protected:
std::vector<int32_t> namedMobs = {
11988, // Ronin
11984, // Spiderling
12654, // Horsemen
11986, // Admiral
11983, // Mech
11982, // Stromling
11985 // Pirate
};
std::map<std::string, float> sectionMultipliers = {};
int32_t mobDeathResetNumber = 30;
std::string zonePrefix = "em";
int32_t zoneNameConst = 2;
int32_t sectionIDConst = 3;
std::string zoneName = "fin";
std::vector<Zone> zones = {};
int32_t changeNum = 15;
int32_t respawnTime = 80;
std::vector<Spawner*> spawnersWatched;
};