-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommand_Enforcer.h
625 lines (535 loc) · 18.3 KB
/
Command_Enforcer.h
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
#pragma once
#include "Broadcaster.h"
void move_Player_Failed(Player &player, sf::Vector2f oldPos) {
sf::Packet packet;
//set back old Position
player.collisionRect.setPosition(oldPos);
//send to client old Position
packet << Move_Player << static_cast<sf::Int64>(oldPos.x) << static_cast<sf::Int64>(oldPos.y);
player.socket->send(packet);
}
void move_Player(Player &player, sf::Packet &packet, float deltaTime) {
//Read packet
sf::Int64 x = player.collisionRect.getPosition().x;
sf::Int64 y = player.collisionRect.getPosition().y;
sf::Uint8 direction = player.direction;
packet >> x >> y >> direction;
//Save current position
sf::Vector2f oldPos = player.collisionRect.getPosition();
//Set new position
player.collisionRect.setPosition(x, y);
//Set new direction
player.direction = direction;
//Check for Collisions
sf::RectangleShape w;
for (unsigned int i = 0; i < walls.size(); ++i) {
w = walls[i].collisionRect;
//Put the collision rectangle up or down
if (player.collisionRect.getPosition().y < w.getPosition().y + 30)
w.setPosition(playerBeforeWall[i]);
if (player.collisionRect.getPosition().y > w.getPosition().y - 30)
w.setPosition(playerBehindWall[i]);
//Checking for collision
if (player.collisionRect.getGlobalBounds().intersects(w.getGlobalBounds())) {
move_Player_Failed(player, oldPos);
return;
}
}
//Set limit
float limit = 2;
if (x != oldPos.x && y != oldPos.y)
limit = std::round(player.speed * deltaTime + 1);
else
limit = std::round(player.speed * deltaTime + 0.6f);
//Check move is possible: Compare the distance between the new and old position
if (std::sqrt(std::pow(std::abs(x - oldPos.x), 2) + std::pow(std::abs(y - oldPos.y), 2)) > limit) {
move_Player_Failed(player, oldPos);
return;
}
//Broadcast the player new position
broadcast_Player_Moved(player);
}
void Running_Player(Player &player) {
player.running = true;
player.speed = 160;
broadcast_Running_Player(player);
}
void Walking_Player(Player &player) {
player.running = false;
player.speed = 100;
broadcast_Walking_Player(player);
}
void item_Grabbing_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_Grabbing_Failed;
packet << item.id;
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().y);
player.socket->send(packet);
}
void item_Inserting_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_inInventory_Failed;
packet << item.id;
player.socket->send(packet);
}
void item_Auto_Inserting_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_Auto_Insert;
packet << item.id;
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().y);
player.socket->send(packet);
}
void item_Take_Out_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_Take_Off;
packet << item.id;
packet << static_cast<unsigned char>(item.inventoryPosition.x);
packet << static_cast<unsigned char>(item.inventoryPosition.y);
player.socket->send(packet);
}
void item_Releasing_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_Releasing_Failed;
packet << item.id;
player.socket->send(packet);
}
void item_Repositioning_Failed(Player &player, Item &item) {
sf::Packet packet;
packet << Item_Repositioning_Failed;
packet << item.id;
packet << static_cast<unsigned char>(item.inventoryPosition.x);
packet << static_cast<unsigned char>(item.inventoryPosition.y);
player.socket->send(packet);
}
//Player grabbed "new" item
void item_Grabbed(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
packet >> item_id;
//Search which item was grabbed
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//Item is free or is it in the inventory?
if (items[i].owner != -1 && items[i].owner != player.id) {
item_Grabbing_Failed(player, items[i]);
return;
}
//Item pick up possible?
if (!items[i].inInventory && !items[i].grabbed) {
//If distance between the player and the item is larger than 200
if (std::sqrt(std::pow(std::abs(player.collisionRect.getPosition().x - items[i].collisionRect.getPosition().x), 2) + std::pow(std::abs(player.collisionRect.getPosition().y - items[i].collisionRect.getPosition().y), 2)) > 200) {
item_Grabbing_Failed(player, items[i]);
return;
}
}
//Set item grabbed
items[i].grabbed = true;
items[i].owner = player.id;
//Broadcast item grabbed
broadcast_Item_Grabbed(player, items[i]);
}
void item_Insert(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
unsigned char InsertingCellX = 0, InsertingCellY = 0;
packet >> item_id >> InsertingCellX >> InsertingCellY;
//Search which item inserted
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//Item grabbed?
if (!items[i].grabbed) {
item_Inserting_Failed(player, items[i]);
return;
}
//Beginning of the inserting process
unsigned char itemSizeX = items[i].inventorySize.x, itemSizeY = items[i].inventorySize.y;
//The entire item fits in the inventory?
if (InsertingCellX + itemSizeX > inventoryX || InsertingCellY + itemSizeY > inventoryY) {
item_Inserting_Failed(player, items[i]);
return;
}
//At the position the space is free?
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
if (!player.inventoryFreeSpace[x][y]) {
item_Inserting_Failed(player, items[i]);
return;
}
//Captured inventory space set to false
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
player.inventoryFreeSpace[x][y] = false;
//Insert item into the player inventory
items[i].owner = player.id;
items[i].inventoryPosition.x = InsertingCellX;
items[i].inventoryPosition.y = InsertingCellY;
items[i].inInventory = true;
items[i].grabbed = false;
}
void item_AutoInsert(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
unsigned char InsertingCellX = 0, InsertingCellY = 0;
packet >> item_id >> InsertingCellX >> InsertingCellY;
//Search which item inserted
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//If distance between the player and the item position is larger than 200
if (std::sqrt(std::pow(std::abs(player.collisionRect.getPosition().x - items[i].collisionRect.getPosition().x), 2) + std::pow(std::abs(player.collisionRect.getPosition().y - items[i].collisionRect.getPosition().y), 2)) > 200) {
item_Auto_Inserting_Failed(player, items[i]);
return;
}
//Beginning of the inserting process
unsigned char itemSizeX = items[i].inventorySize.x, itemSizeY = items[i].inventorySize.y;
//The entire item fits in the inventory?
if (InsertingCellX + itemSizeX > inventoryX || InsertingCellY + itemSizeY > inventoryY) {
item_Inserting_Failed(player, items[i]);
return;
}
//At the position the space is free?
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
if (!player.inventoryFreeSpace[x][y]) {
item_Inserting_Failed(player, items[i]);
return;
}
//Captured inventory space set to false
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
player.inventoryFreeSpace[x][y] = false;
//Insert item into the player inventory
items[i].owner = player.id;
items[i].inventoryPosition.x = InsertingCellX;
items[i].inventoryPosition.y = InsertingCellY;
items[i].inInventory = true;
//Broadcast item grabbed
broadcast_Item_Grabbed(player, items[i]);
}
void item_Take_Out(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
sf::Int64 x = 0, y = 0;
packet >> item_id >> x >> y;
//Search which item was taked out
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//Player owns this item?
if (items[i].owner != player.id) {
item_Take_Out_Failed(player, items[i]);
return;
}
//Item grabbed?
if (!items[i].grabbed) {
item_Take_Out_Failed(player, items[i]);
return;
}
//If distance between the player and the releasing position is larger than 200
if (std::sqrt(std::pow(std::abs(player.collisionRect.getPosition().x - x), 2) + std::pow(std::abs(player.collisionRect.getPosition().y - y), 2)) > 200) {
item_Releasing_Failed(player, items[i]);
return;
}
//Release item
items[i].grabbed = false;
items[i].inInventory = false;
items[i].equipped = false;
items[i].owner = -1;
items[i].collisionRect.setPosition(x, y);
//Free up player inventory
for (unsigned char y = items[i].inventoryPosition.y; y < items[i].inventoryPosition.y + items[i].inventorySize.y; ++y)
for (unsigned char x = items[i].inventoryPosition.x; x < items[i].inventoryPosition.x + items[i].inventorySize.x; ++x)
player.inventoryFreeSpace[x][y] = true;
//Broadcast item released
broadcast_Item_Released(player, items[i]);
}
void item_Repositioned(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
unsigned char InsertingCellX = 0, InsertingCellY = 0;
packet >> item_id >> InsertingCellX >> InsertingCellY;
//Search which item was repositioned
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//The player owns this item?
if (items[i].owner != player.id) {
item_Releasing_Failed(player, items[i]);
return;
}
//Item is inside the inventory?
if (!items[i].inInventory) {
item_Releasing_Failed(player, items[i]);
return;
}
//Item is grabbed?
if (!items[i].grabbed) {
item_Releasing_Failed(player, items[i]);
return;
}
//Beginning of the positioning process
unsigned char itemSizeX = items[i].inventorySize.x, itemSizeY = items[i].inventorySize.y;
//The entire item fits in the inventory?
if (InsertingCellX + itemSizeX > inventoryX || InsertingCellY + itemSizeY > inventoryY) {
item_Inserting_Failed(player, items[i]);
return;
}
//Free up last position space
for (unsigned char y = items[i].inventoryPosition.y; y < items[i].inventoryPosition.y + itemSizeY; ++y)
for (unsigned char x = items[i].inventoryPosition.x; x < items[i].inventoryPosition.x + itemSizeX; ++x)
player.inventoryFreeSpace[x][y] = true;
//At the position the space is free?
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
if (!player.inventoryFreeSpace[x][y]) {
item_Inserting_Failed(player, items[i]);
return;
}
//Captured inventory space set to false
for (unsigned char y = InsertingCellY; y < InsertingCellY + itemSizeY; ++y)
for (unsigned char x = InsertingCellX; x < InsertingCellX + itemSizeX; ++x)
player.inventoryFreeSpace[x][y] = false;
//Set new item position
items[i].owner = player.id;
items[i].inventoryPosition.x = InsertingCellX;
items[i].inventoryPosition.y = InsertingCellY;
items[i].grabbed = false;
}
void item_Released(Player &player, sf::Packet &packet) {
//Read received data
unsigned int item_id = 0;
sf::Int64 x = 0, y = 0;
packet >> item_id >> x >> y;
//Search which item was released
unsigned int i = 0;
for (; i < items.size(); ++i)
if (items[i].id == item_id)
break;
//If the item was not found, idk, do nothing
if (i >= items.size()) {
return;
}
//The player owns this item?
if (items[i].owner != player.id) {
item_Releasing_Failed(player, items[i]);
return;
}
//Item is grabbed?
if (!items[i].grabbed) {
item_Releasing_Failed(player, items[i]);
return;
}
//If distance between the player and the releasing position is larger than 200
if (std::sqrt(std::pow(std::abs(player.collisionRect.getPosition().x - x), 2) + std::pow(std::abs(player.collisionRect.getPosition().y - y), 2)) > 200) {
item_Releasing_Failed(player, items[i]);
return;
}
//Set item released
items[i].grabbed = false;
items[i].inInventory = false;
items[i].equipped = false;
items[i].owner = -1;
items[i].collisionRect.setPosition(x, y);
//Broadcast item released
broadcast_Item_Released(player, items[i]);
return;
}
void sendPlayer(Player &player) {
sf::Packet packet;
packet << Send_Player;
packet << player.id;
packet << player.username;
packet << player.dead;
packet << player.running;
packet << static_cast<sf::Int64>(player.speed);
packet << static_cast<sf::Int64>(player.attackSpeed * 100);
packet << static_cast<sf::Int64>(player.maxHealth);
packet << static_cast<sf::Int64>(player.health);
packet << static_cast<sf::Int64>(player.maxMana);
packet << static_cast<sf::Int64>(player.mana);
packet << static_cast<sf::Int64>(player.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(player.collisionRect.getPosition().y);
packet << player.direction;
player.socket->send(packet);
}
void sendWalls(Player &player) {
sf::Packet packet;
unsigned int stepper = 0;
packet << Send_Walls;
for (Wall &w : walls) {
packet << w.id;
packet << static_cast<sf::Int64>(playerBehindWall[stepper].x);
packet << static_cast<sf::Int64>(playerBehindWall[stepper].y);
packet << w.direction;
++stepper;
}
player.socket->send(packet);
}
void sendOnlinePlayersTo(Player &player) {
sf::Packet packet;
packet << Send_Online_Players;
for (Player &p : players) {
if (player.id != p.id) {
packet << p.id;
packet << p.username;
packet << p.dead;
packet << p.running;
packet << static_cast<sf::Int64>(p.speed);
packet << static_cast<sf::Int64>(p.attackSpeed * 100);
packet << static_cast<sf::Int64>(p.maxHealth);
packet << static_cast<sf::Int64>(p.health);
packet << static_cast<sf::Int64>(p.maxMana);
packet << static_cast<sf::Int64>(p.mana);
packet << static_cast<sf::Int64>(p.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(p.collisionRect.getPosition().y);
packet << p.direction;
}
}
player.socket->send(packet);
}
void sendItems(Player &player) {
sf::Packet packet;
packet << Send_Items;
for (Item &item : items) {
packet << item.id;
packet << item.owner;
packet << item.type;
packet << item.visible;
packet << item.equipped;
packet << item.grabbed;
packet << item.inInventory;
packet << static_cast<unsigned char>(item.inventoryPosition.x);
packet << static_cast<unsigned char>(item.inventoryPosition.y);
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(item.collisionRect.getPosition().y);
}
player.socket->send(packet);
}
void send_Daemons(Player &player) {
sf::Packet packet;
packet << Send_Daemons;
for (Daemon &d : daemons) {
packet << d.id;
packet << d.dead;
packet << d.running;
packet << static_cast<sf::Int64>(d.speed);
packet << static_cast<sf::Int64>(d.attackSpeed * 100);
packet << static_cast<sf::Int64>(d.maxHealth);
packet << static_cast<sf::Int64>(d.health);
packet << static_cast<sf::Int64>(d.maxMana);
packet << static_cast<sf::Int64>(d.mana);
packet << static_cast<sf::Int64>(d.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(d.collisionRect.getPosition().y);
packet << d.direction;
}
player.socket->send(packet);
}
void send_Safezones(Player &player) {
sf::Packet packet;
packet << Send_Safezones;
for (Safezone &s : safezones) {
packet << s.id;
packet << static_cast<sf::Int64>(s.rc.getPosition().x);
packet << static_cast<sf::Int64>(s.rc.getPosition().y);
packet << static_cast<sf::Int64>(s.rc.getGlobalBounds().width);
packet << static_cast<sf::Int64>(s.rc.getGlobalBounds().height);
packet << s.active;
}
player.socket->send(packet);
}
void send_Regenerators(Player &player) {
sf::Packet packet;
packet << Send_Regenerators;
for (Regenerator &r : regenerators) {
packet << r.id;
packet << static_cast<sf::Int64>(r.rc.getPosition().x);
packet << static_cast<sf::Int64>(r.rc.getPosition().y);
packet << static_cast<sf::Int64>(r.rc.getGlobalBounds().width);
packet << static_cast<sf::Int64>(r.rc.getGlobalBounds().height);
packet << r.active;
packet << r.type;
}
player.socket->send(packet);
}
void respawn_Player(Player &player) {
player.dead = false;
player.health = player.maxHealth;
player.mana = player.maxMana;
player.collisionRect.setPosition(player.respawn);
sf::Packet packet;
packet << Send_Respawn;
packet << player.id;
packet << player.health;
packet << player.mana;
packet << static_cast<sf::Int64>(player.collisionRect.getPosition().x);
packet << static_cast<sf::Int64>(player.collisionRect.getPosition().y);
for (Player &p : players)
p.socket->send(packet);
}
void login(Player &player, char *username, std::string password) {
sf::Packet packet;
//This user already logged in?
for (Player &p : players) {
if (p.logged_in && p.username == username) {
std::cout << username << " already logged in" << std::endl;
packet << Already_logged_in;
if (selector.isReady(*player.socket))
player.socket->send(packet);
return;
}
}
//Database contains this username?
for (unsigned int i = 0; i < users.size(); ++i) {
if (username == users[i].username && password == users[i].password) {
// Player logged in
//Set player datas
player.logged_in = true;
strncpy_s(player.username, username, 20);
player.id = users[i].id;
//Send login successful message
packet << Login;
player.socket->send(packet);
std::cout << std::endl << CurrentTime() << player.socket->getRemoteAddress() << " logged in" << std::endl << "Me: ";
//Broadcast new player to the other players
broadcast_New_Player(player);
//Add targets to new player
Player_Target_List_Add(player);
//Add new player to the mob attack list
Enemies_Target_List_Add(player);
return;
}
}
//Login was failed
packet << Login_failed;
player.socket->send(packet);
std::cout << std::endl << CurrentTime() << player.socket->getRemoteAddress() << " login failed" << std::endl << "Me: ";
}