blob: 0ffedf7efccf415aecfeb35bd814bb4b5d15b151 (
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
|
#include "CastleManager.h"
#include "ThreadsafeQueue.h"
#include "Engine.h"
#include "SDK.h"
#include "Renderer.h"
bool warningEnabled = true;
bool warnTeam = false;
bool warnAll = false;
int notification = 0;
ThreadSafeQueue<std::string> teamMessages;
ThreadSafeQueue<std::string> allMessages;
void CastleManager::OnUnitCreated(Unit* unit)
{
if (!warningEnabled)
{
return;
}
Player* owningPlayer = unit->pOwner;
if (!owningPlayer || owningPlayer == Engine::Get()->GetLocalPlayer())
{
return;
}
if (strcmp("CSTL", unit->pUnitData->name) == 0)
{
std::string message = std::string(owningPlayer->name) + " is building a castle!";
const char* charMessage = message.c_str();
switch (notification)
{
case 0:
Engine::Get()->PrintNotification(charMessage);
break;
case 1:
teamMessages.push(message);
break;
case 2:
allMessages.push(message);
break;
default:
break;
}
}
}
void CastleManager::OnMenuMainWindow()
{
if (!teamMessages.isEmpty())
{
std::string message;
teamMessages.pop(message);
Engine::Get()->SendChat(message.c_str(), true);
}
if (!allMessages.isEmpty())
{
std::string message;
allMessages.pop(message);
Engine::Get()->SendChat(message.c_str(), false);
}
ImGui::Separator();
ImGui::Text("Castle Manager");
ImGui::Checkbox("Warning", &warningEnabled);
ImGui::Text("Notification");
ImGui::SameLine();
ImGui::RadioButton("Local", ¬ification, 0);
ImGui::SameLine();
ImGui::RadioButton("Team", ¬ification, 1);
ImGui::SameLine();
ImGui::RadioButton("All", ¬ification, 2);
ImGui::Separator();
}
|