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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
#include <iostream>
#include <any>
#include <string>
#include <map>
#include <vector>
#include <typeinfo>
// 配置系统
class ConfigManager
{
private:
std::map<std::string, std::any> m_Config;
public:
template<typename T>
void Set(const std::string& key, const T& value)
{
m_Config[key] = value;
}
template<typename T>
T Get(const std::string& key) const
{
auto it = m_Config.find(key);
if (it != m_Config.end())
{
try
{
return std::any_cast<T>(it->second);
}
catch (const std::bad_any_cast&)
{
throw std::runtime_error("Type mismatch for key: " + key);
}
}
throw std::runtime_error("Key not found: " + key);
}
template<typename T>
T GetOr(const std::string& key, const T& defaultValue) const
{
try
{
return Get<T>(key);
}
catch (...)
{
return defaultValue;
}
}
bool HasKey(const std::string& key) const
{
return m_Config.find(key) != m_Config.end();
}
std::string GetTypeName(const std::string& key) const
{
auto it = m_Config.find(key);
if (it != m_Config.end())
{
return it->second.type().name();
}
return "unknown";
}
void PrintAll() const
{
std::cout << "Configuration:" << std::endl;
for (const auto& [key, value] : m_Config)
{
std::cout << " " << key << " (" << value.type().name() << ")" << std::endl;
}
}
};
// 事件系统
struct Event
{
std::string type;
std::any data;
Event(const std::string& t) : type(t) {}
template<typename T>
Event(const std::string& t, const T& d) : type(t), data(d) {}
template<typename T>
T GetData() const
{
return std::any_cast<T>(data);
}
template<typename T>
bool IsDataType() const
{
return data.type() == typeid(T);
}
};
class EventManager
{
private:
std::vector<Event> m_Events;
public:
template<typename T>
void Emit(const std::string& type, const T& data)
{
m_Events.emplace_back(type, data);
std::cout << "Event emitted: " << type << std::endl;
}
void Emit(const std::string& type)
{
m_Events.emplace_back(type);
std::cout << "Event emitted: " << type << std::endl;
}
std::vector<Event> GetEvents(const std::string& type) const
{
std::vector<Event> result;
for (const auto& event : m_Events)
{
if (event.type == type)
{
result.push_back(event);
}
}
return result;
}
void ProcessEvents()
{
for (const auto& event : m_Events)
{
std::cout << "Processing event: " << event.type;
if (event.data.has_value())
{
std::cout << " (data type: " << event.data.type().name() << ")";
}
std::cout << std::endl;
}
m_Events.clear();
}
};
// 数据容器
class DataContainer
{
private:
std::vector<std::any> m_Data;
public:
template<typename T>
void Add(const T& value)
{
m_Data.push_back(value);
}
size_t Size() const { return m_Data.size(); }
template<typename T>
std::vector<T> GetAll() const
{
std::vector<T> result;
for (const auto& item : m_Data)
{
if (T* ptr = std::any_cast<T>(&item))
{
result.push_back(*ptr);
}
}
return result;
}
void PrintTypes() const
{
std::cout << "Container types:" << std::endl;
for (size_t i = 0; i < m_Data.size(); ++i)
{
std::cout << " [" << i << "]: " << m_Data[i].type().name() << std::endl;
}
}
template<typename Visitor>
void Visit(Visitor&& visitor) const
{
for (const auto& item : m_Data)
{
// 尝试不同的类型
if (const int* intPtr = std::any_cast<int>(&item))
{
visitor(*intPtr);
}
else if (const double* doublePtr = std::any_cast<double>(&item))
{
visitor(*doublePtr);
}
else if (const std::string* stringPtr = std::any_cast<std::string>(&item))
{
visitor(*stringPtr);
}
else
{
visitor("unknown type");
}
}
}
};
void PracticalExamplesDemo()
{
std::cout << "=== Practical Examples Demo ===" << std::endl;
// 配置管理器示例
std::cout << "1. Configuration Manager:" << std::endl;
ConfigManager config;
config.Set("window_width", 1920);
config.Set("window_height", 1080);
config.Set("fullscreen", true);
config.Set("title", std::string("My Application"));
config.Set("version", 1.5);
config.PrintAll();
std::cout << "Window size: " << config.Get<int>("window_width")
<< "x" << config.Get<int>("window_height") << std::endl;
std::cout << "Fullscreen: " << (config.Get<bool>("fullscreen") ? "yes" : "no") << std::endl;
std::cout << "Title: " << config.Get<std::string>("title") << std::endl;
// 使用默认值
auto timeout = config.GetOr<int>("timeout", 30);
std::cout << "Timeout: " << timeout << " seconds" << std::endl;
// 事件系统示例
std::cout << "\n2. Event System:" << std::endl;
EventManager eventMgr;
eventMgr.Emit("user_login", std::string("john_doe"));
eventMgr.Emit("score_update", 1500);
eventMgr.Emit("level_complete");
eventMgr.Emit("item_collected", std::string("health_potion"));
eventMgr.ProcessEvents();
// 数据容器示例
std::cout << "\n3. Data Container:" << std::endl;
DataContainer container;
container.Add(42);
container.Add(3.14);
container.Add(std::string("Hello"));
container.Add(100);
container.Add(std::string("World"));
container.PrintTypes();
auto integers = container.GetAll<int>();
auto strings = container.GetAll<std::string>();
std::cout << "Integers: ";
for (int i : integers) std::cout << i << " ";
std::cout << std::endl;
std::cout << "Strings: ";
for (const auto& s : strings) std::cout << s << " ";
std::cout << std::endl;
std::cout << "All items: ";
container.Visit([](const auto& item) {
std::cout << item << " ";
});
std::cout << std::endl;
}
int main()
{
PracticalExamplesDemo();
return 0;
}
|